diff options
| author | nsfisis <nsfisis@gmail.com> | 2024-08-17 03:03:50 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2024-08-28 22:26:54 +0900 |
| commit | 6ec57d081d1f2af298e4c917abb79db854a54a4d (patch) | |
| tree | 48c318220274d0a2e0c500b759cc40b62958bc7a /home-manager/config | |
| parent | 4d13f7def1bdfebde5b8bd35bdfc4de2b7e87140 (diff) | |
| download | dotfiles-6ec57d081d1f2af298e4c917abb79db854a54a4d.tar.gz dotfiles-6ec57d081d1f2af298e4c917abb79db854a54a4d.tar.zst dotfiles-6ec57d081d1f2af298e4c917abb79db854a54a4d.zip | |
fish: fixup
Diffstat (limited to 'home-manager/config')
| -rw-r--r-- | home-manager/config/fish/config.fish | 12 | ||||
| -rw-r--r-- | home-manager/config/tmux/tmux.conf | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/home-manager/config/fish/config.fish b/home-manager/config/fish/config.fish index 4330a58..0d605ed 100644 --- a/home-manager/config/fish/config.fish +++ b/home-manager/config/fish/config.fish @@ -22,10 +22,10 @@ alias grep 'rg' alias mkdir 'mkdir -p' alias mv 'mv -i' alias rm 'rm -i' -alias ssh 'TERM=xterm-256color ssh' +alias ssh 'TERM=xterm-256color command ssh' alias tree 'tree -N --gitignore' alias view 'nvim -R' -alias vim nvim +alias vim 'nvim' alias vimdiff 'nvim -d' if [ -n $on_darwin ] @@ -93,17 +93,17 @@ if [ -n $has_nvim ] end function ee if [ (count $argv) -eq 0 ] - fzf --reverse --bind 'enter:execute(nvim {})' + fzf --reverse --bind 'enter:become(nvim {})' else - find $argv[1] -type f -print0 | fzf --read0 --reverse --bind 'enter:execute(nvim {})' + find $argv[1] -type f -print0 | fzf --read0 --reverse --bind 'enter:become(nvim {})' end end else function ee if [ (count $argv) -eq 0 ] - fzf --reverse --bind 'enter:execute(vim {})' + fzf --reverse --bind 'enter:become(vim {})' else - find $argv[1] -type f -print0 | fzf --read0 --reverse --bind 'enter:execute(vim {})' + find $argv[1] -type f -print0 | fzf --read0 --reverse --bind 'enter:become(vim {})' end end end diff --git a/home-manager/config/tmux/tmux.conf b/home-manager/config/tmux/tmux.conf index 0746f82..321e095 100644 --- a/home-manager/config/tmux/tmux.conf +++ b/home-manager/config/tmux/tmux.conf @@ -12,7 +12,7 @@ # BASICS {{{2 set-option -g renumber-windows on set-option -g focus-events on -set-option -g default-shell fish +set-option -g default-shell ~/.nix-profile/bin/fish # TERMINAL FEATURES {{{2 set-option -ga terminal-overrides ',tmux-256color:RGB' |
