From 5b69c226f43c8b6f27e8f84a70c3126890c630a8 Mon Sep 17 00:00:00 2001 From: TBS093A Date: Fri, 28 Apr 2023 17:33:26 +0200 Subject: [PATCH] feat: fix binding doc for nvim tree --- vim.config/init.vim | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/vim.config/init.vim b/vim.config/init.vim index a619883..5f6f52a 100644 --- a/vim.config/init.vim +++ b/vim.config/init.vim @@ -337,7 +337,7 @@ call plug#begin() " Ctrl + t - open file in new tab that can be managed separately from the other buffers present " Ctrl + v - to open the file in the buffer by dividing it vertically into two parts, " if there was already an open file this will be displayed side by side with the new file - " Ctrl + h - to open the file like the command described above but dividing the buffer horizontally + " Ctrl + x - to open the file like the command described above but dividing the buffer horizontally " BarBar shortcuts " https://github.com/romgrk/barbar.nvim @@ -430,6 +430,11 @@ call plug#begin() " Ctrl + RightMouse - select a word where clicked " Alt + Ctrl + RightMouse - create column, from current cursot to clicekd position + " Additional shortcut stuff + + " add some keybindings for - copy / paste / cut (visual mode) + " fix vim-visual-multi (select lines is throuble with Ctrl + n) + " Initialize plugin system " - Automatically executes `filetype plugin indent on` and `syntax enable`. call plug#end()