diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-12-26 15:41:26 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2020-12-26 15:41:26 +0700 |
commit | 73ce3f687fc3699a246d6daa4a44c698c0e788dc (patch) | |
tree | f597d393423e61bacdb753a63b22dff7e76d984a /vim/.vim/vimrc | |
parent | bfd59f83b7af16541e8b70c1321470c65131ae29 (diff) | |
download | dotfiles-73ce3f687fc3699a246d6daa4a44c698c0e788dc.tar.gz |
Update 2020-12-26
Diffstat (limited to 'vim/.vim/vimrc')
-rwxr-xr-x | vim/.vim/vimrc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index fce91f9..e72b9e4 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -35,6 +35,7 @@ augroup END let g:netrw_banner = 0 let g:netrw_liststyle = 3 +let g:VM_Enabled = 1 let g:srcery_italic = 1 let g:jedi#popup_on_dot = 0 let g:jedi#popup_select_first = 0 @@ -42,10 +43,12 @@ let g:jedi#show_call_signatures = 2 let g:jedi#smart_auto_mappings = 0 let g:polyglot_disabled = ['latex'] +packadd! python-jedi call plug#begin('~/.vim/plugged') +Plug 'https://github.com/andrep/vimacs' Plug 'https://github.com/vim/killersheep' -Plug 'https://github.com/francoiscabrol/ranger.vim' Plug 'https://github.com/sheerun/vim-polyglot' +Plug 'https://github.com/francoiscabrol/ranger.vim' Plug 'https://github.com/srcery-colors/srcery-vim' Plug 'https://github.com/knsh14/vim-github-link' Plug 'https://github.com/lervag/vimtex', {'for': 'tex'} @@ -55,10 +58,10 @@ Plug 'https://github.com/racer-rust/vim-racer', {'for': 'rust'} Plug 'https://github.com/rhysd/rust-doc.vim', {'for': 'rust'} Plug 'https://github.com/artur-shaik/vim-javacomplete2', {'for': 'java'} call plug#end() -source /usr/share/doc/fzf/examples/fzf.vim set t_Co=256 colorscheme srcery map Q gq command Q q command W w +nmap W :w<CR> |