fish/functions/gl: git: Manually set the file type to git when calling nvim

See discussion in
https://github.com/neovim/neovim/issues/16940
This commit is contained in:
Sanchayan Maity 2022-01-06 13:44:32 +05:30
parent d72b6430a4
commit a30eda8531
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ function gl --description 'Git browse commits'
fzf --exact --no-sort --reverse --tiebreak=index --no-multi --ansi \
--preview="$view_commit" \
--header="ENTER to view, CTRL-Y to copy hash, CTRL-O to open on GitHub, CTRL-X to checkout, CTRL-C to exit, CTRL-S to cherry-pick" \
--bind "enter:execute:$view_commit_nvim | nvim -R -" \
--bind "enter:execute:$view_commit_nvim | nvim -c 'setf git' -R" \
--bind "ctrl-y:execute:$copy_commit_hash" \
--bind "ctrl-x:execute:$git_checkout" \
--bind "ctrl-o:execute:$github_open" \

View File

@ -4,7 +4,7 @@
login = sanchayanmaity
[core]
editor = nvim
pager = nvim -R
pager = nvim -R -c 'setf git'
excludesfile = ~/.config/git/ignore
[color]
ui = true