diff options
Diffstat (limited to 'config/vim/vimrc')
-rw-r--r-- | config/vim/vimrc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/vim/vimrc b/config/vim/vimrc index 6a568a8..b348907 100644 --- a/config/vim/vimrc +++ b/config/vim/vimrc @@ -41,6 +41,10 @@ call plug#begin() Plug 'preservim/nerdtree' nnoremap <F5> :NERDTree<CR> +let NERDTreeMinimalUI=1 + +Plug 'ryanoasis/vim-devicons' +set encoding=UTF-8 Plug 'preservim/vim-markdown' "let g:vim_markdown_math = 1 @@ -117,6 +121,20 @@ Plug 'heavenshell/vim-pydocstring', { 'do': 'make install', 'for': 'python' } Plug 'tpope/vim-fugitive' +Plug 'yggdroot/indentline' + +Plug 'yuttie/comfortable-motion.vim' +noremap <silent> <ScrollWheelDown> :call comfortable_motion#flick(40)<CR> +noremap <silent> <ScrollWheelUp> :call comfortable_motion#flick(-40)<CR> + +let g:comfortable_motion_interval = 2000.0/60 +let g:comfortable_motion_friction = 80.0 +let g:comfortable_motion_air_drag = 2.0 + +Plug 'myusuf3/numbers.vim' + +let g:numbers_exclude = ['tagbar', 'gundo', 'minibufexpl', 'nerdtree'] + call plug#end() highlight Pmenu ctermbg=black guibg=black ctermfg=white |