diff --git a/conf.d/nvim/keybindings.vim b/conf.d/nvim/keybindings.vim index 12b46fa..4f71605 100644 --- a/conf.d/nvim/keybindings.vim +++ b/conf.d/nvim/keybindings.vim @@ -239,16 +239,17 @@ map r :call RenameFile() " Open file under cursor map o :call GotoFile("") -map ' ciw''P -map " c""P -map [ c[]P -map { c{}P +" Surround +map ' S' +map " S" +map [ S[ +map { S{ -" Rewrap paragraph using -map {gq}:echo "Rewrapped paragraph" +" " Rewrap paragraph using +" map {gq}:echo "Rewrapped paragraph" " Git -map Gs :Git status +map Gs :Git status map Ga :Git add map Gc :Git commit " ----- diff --git a/conf.d/nvim/plug.vim b/conf.d/nvim/plug.vim index 367921d..6a846b8 100644 --- a/conf.d/nvim/plug.vim +++ b/conf.d/nvim/plug.vim @@ -6,7 +6,7 @@ """""""""""""""""""""""""""""""""""""""""""""""" " __ _____ __ __ ____ _ _ _ ____ -" \ \ / /_ _| \/ | | _ \| | | | | |/ ___| +" \ \ / /_ _| \/ | | _ \| | | | | |/ ___| " \ \ / / | || |\/| | | |_) | | | | | | | _ " \ V / | || | | | | __/| |__| |_| | |_| | " \_/ |___|_| |_| |_| |_____\___/ \____| @@ -57,6 +57,9 @@ Plug 'editorconfig/editorconfig-vim' " Folding Plug 'Konfekt/FastFold' +" Grammalecte +Plug 'dpelle/vim-Grammalecte' + " Markdown Plug 'iamcco/markdown-preview.nvim', { 'do': { -> mkdp#util#install() } } " Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }