feat: revamp
This commit is contained in:
parent
40c6e1c4b0
commit
f56d076f52
32 changed files with 127 additions and 831 deletions
|
|
@ -1,4 +1,7 @@
|
|||
alias ls 'exa -alh'
|
||||
alias cat 'batcat'
|
||||
alias g 'git'
|
||||
alias copy 'xclip -selection clipboard'
|
||||
alias cat 'bat'
|
||||
alias k 'kubectl'
|
||||
alias rm 'trash'
|
||||
alias future-commit 'git commit --date (echo (date -d +7hours))'
|
||||
|
|
|
|||
|
|
@ -1,2 +1,4 @@
|
|||
set -gx EDITOR vim
|
||||
set -gx EDITOR nvim
|
||||
set -gx BAT_THEME "Catppuccin-frappe"
|
||||
pyenv init - | source
|
||||
|
||||
|
|
|
|||
7
fish/conf.d/envsource.fish
Normal file
7
fish/conf.d/envsource.fish
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
function envsource
|
||||
for line in (cat $argv | grep -v '^#')
|
||||
set item (string split -m 1 '=' $line)
|
||||
set -gx $item[1] $item[2]
|
||||
echo "Exported key $item[1]"
|
||||
end
|
||||
end
|
||||
|
|
@ -1,8 +1,7 @@
|
|||
set -gx PATH ~/.local/bin $PATH
|
||||
set -gx PATH ~/.local/bin/185504a9-utils/ $PATH
|
||||
set -gx PATH ~/.local/bin/dotutils/ $PATH
|
||||
set -gx PATH "$HOME/.cargo/bin" $PATH;
|
||||
set -gx PATH $ANDROID_HOME/emulator $PATH
|
||||
set -gx PATH $ANDROID_HOME/tools $PATH
|
||||
set -gx PATH $ANDROID_HOME/tools/bin $PATH
|
||||
set -gx PATH $ANDROID_HOME/platform-tools $PATH
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
set -gx PATH "$HOME/.cargo/bin" $PATH;
|
||||
Loading…
Add table
Add a link
Reference in a new issue