diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index 7c3212a..1b9aa0b 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -46,6 +46,8 @@ set splitbelow splitright " Split in more natural way set autoread " Reload files on change set mouse=a " Enable mouse mode set encoding=utf-8 " Use UTF-8, not ASCII (May cause issues on TTY) +set path+=** " Search down into subfolders with tab completion +set wildmenu " Display all matching files when we tab complete "set termguicolors " Use true colors (256) (May cause issues on TTY) " Disable automatic commenting on newline @@ -85,6 +87,10 @@ nnoremap nnoremap nnoremap +" Use shift to move 10 lines up/down quickly +noremap K 10k +noremap J 10j + " User interface / Theme colorscheme onedark set guioptions-=m " remove menubar