-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bootstrap for macOS (and maybe linux) * gitconfig is solely driven from gitconfig.ini, removing OS specific git configs * install apps via pkg mgr for macOS and linux * have() function to detect if exe is on path * setup shell environment, incl. fish * fixes for bootstrap.sh env - correctly copy fish functions - config.fish tolerates missing zoxide, starship apps - bat theming more readable; added config file - enable git clone in clone step (not rigorously tested yet) - WIP: linux (debian/ubuntu) bootstrap not reliable yet, apt/snap vary largely between versions; some app packages missing or hopeless outdated. * win bootstrap: don't delete nvim-data if treesitter installed (too slow to recompile) * remove now-obsolete files
- Loading branch information
1 parent
5632086
commit a4aa561
Showing
21 changed files
with
375 additions
and
3,168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,3 @@ vimfiles/.netrwhist | |
# secrets files | ||
.secrets | ||
.ssh/ | ||
|
||
# fisherman plugins | ||
/fish/functions/__* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
alias cls='clear' | ||
alias la='ls -AGF' | ||
alias ls='ls -GF' | ||
alias ll='ls -lGF' | ||
|
||
alias l='less' | ||
export LESS="-c -i -x4 -J -w -M -r" | ||
export VISUAL='nvim' | ||
alias v='nvim' | ||
alias vv='nvim' | ||
|
||
alias ff='fd' | ||
#alias '-'='popd' | ||
alias ..='cd ../' | ||
alias ...='cd ../../' | ||
|
||
# vi mode; can be switched on temp with: set -o vi | ||
set editing-mode vi | ||
|
||
myip() { wget -q -O - checkip.dyndns.org|sed -e 's/.*Current IP Address: //' -e 's/<.*$//'; } |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.