diff options
Diffstat (limited to 'vim')
-rw-r--r-- | vim/keymaps.vim | 4 | ||||
-rw-r--r-- | vim/plugins.vim | 7 |
2 files changed, 2 insertions, 9 deletions
diff --git a/vim/keymaps.vim b/vim/keymaps.vim index dbb80de..9570949 100644 --- a/vim/keymaps.vim +++ b/vim/keymaps.vim @@ -91,10 +91,10 @@ endtry au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif """""""""""""""""""""""" -" Fern +" Netrw """"""""""""""""""""""" -" Toggle fern tree view +" Toggle tree view nnoremap <C-f> :Lexplore<CR> """""""""""""""""""" diff --git a/vim/plugins.vim b/vim/plugins.vim index aa9754a..7822826 100644 --- a/vim/plugins.vim +++ b/vim/plugins.vim @@ -31,8 +31,6 @@ Plug 'prabirshrestha/asyncomplete-lsp.vim' " Autocompletion & connection with vi Plug 'wakatime/vim-wakatime' " Wakatime Plug 'ap/vim-css-color' " rgb, hex color preview -" Language -Plug 'mattn/emmet-vim', { 'for': ['html', 'css', 'js', 'vue'] } call plug#end() filetype plugin indent on " Allow filetype detection, plugins, indentation @@ -73,7 +71,6 @@ set statusline+=\ \|\ [%{&fileformat}\] set statusline+=\ \|\ %l:%c set statusline+=\ [%p%%]\ - " VIM lsp let g:lsp_diagnostics_echo_cursor = 1 let g:lsp_diagnostics_virtual_text_enabled = 0 @@ -139,7 +136,3 @@ let g:which_key_map.l = { \ 'h' : 'hover information', \ 'df' : 'format document', \ } - -" Emmet -let g:user_emmet_leader_key='é' - |