diff --git a/nvim/init.vim b/nvim/init.vim new file mode 100644 index 0000000..5731ee5 --- /dev/null +++ b/nvim/init.vim @@ -0,0 +1,19 @@ +" Enable the clearly superior mode. +let g:vim_ide = 1 + +" Source Dima's config +source :p:h/../dmitmel-dotfiles/nvim/init.vim + +" Add keybind for coc-explorer +nmap m :CocCommand explorer + +" Give me that beautiful colorscheme +set termguicolors + +" Copy to clipboard register and paste from clipboard register {{{ + " Taken from https://unix.stackexchange.com/a/23437 + nnoremap "+y + vnoremap "+y + nnoremap "+gP + vnoremap "+gP +" }}}