diff options
author | Urbain Vaes <urbain@vaes.uk> | 2020-10-14 16:54:42 +0200 |
---|---|---|
committer | Urbain Vaes <urbain@vaes.uk> | 2020-10-14 16:54:42 +0200 |
commit | 3ccffd6eddb1d614ff3da9ce48594cd716ddcdcb (patch) | |
tree | 647644bfb429cbc1983d6664d85487dbf67f3f59 | |
parent | e5dd436aabe5ac43db7af408a6106fc43644371c (diff) |
Fix minor bugs
-rw-r--r-- | vifm/.config/vifm/vifmrc | 1 | ||||
-rw-r--r-- | vim/.vimrc | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/vifm/.config/vifm/vifmrc b/vifm/.config/vifm/vifmrc index 0dd5220..f02455a 100644 --- a/vifm/.config/vifm/vifmrc +++ b/vifm/.config/vifm/vifmrc @@ -40,6 +40,7 @@ nnoremap ,i :!inkscape %f<cr> nnoremap <c-d> :q<cr> nnoremap <c-l> <c-w>l nnoremap <bs> <c-w>h +nnoremap R :sort<cr>c " To disable automatic tagging of search results nnoremap coh :set hlsearch!<cr> @@ -70,7 +70,7 @@ if has("nvim") Plug '~/dotfiles/plugins/nvim-i3scratchpad' endif -if hostname() != "peuplier" +if has("nvim") && hostname() != "peuplier" Plug 'neovim/nvim-lsp' endif |