~antoinentl/vimrc

94f6c39ac9ecd89d19a6ce79575ea91f6b752db4 — antoinentl 2 years ago 97bfb02
edit: purple theme and few plugins
1 files changed, 14 insertions(+), 7 deletions(-)

M vimrc
M vimrc => vimrc +14 -7
@@ 4,26 4,31 @@ if empty(glob(data_dir . '/autoload/plug.vim'))
  autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif

" Truecolors
set termguicolors

" Plugins will be downloaded under the specified directory.
call plug#begin(expand('~/.vim/plugins'))

" Declare the list of plugins.
Plug 'arcticicestudio/nord-vim'
Plug 'preservim/nerdtree' |
            \ Plug 'xuyuanp/nerdtree-git-plugin'
Plug 'embark-theme/vim', { 'as': 'embark', 'branch': 'main' }
" Plug 'itchyny/lightline.vim'
Plug 'sheerun/vim-polyglot'
Plug 'Rigellute/shades-of-purple.vim'
Plug 'vim-airline/vim-airline'

" List ends here. Plugins become visible to Vim after this call.
call plug#end()

let g:nord_italic_comments = 1
let g:nord_cursor_line_number_background = 1
let g:nord_uniform_status_lines = 1
let g:nord_bold = 1
let g:nord_italic = 1
"colorscheme nord
colorscheme shades_of_purple
set number
set numberwidth=2

let g:shades_of_purple_lightline = 1
let g:lightline = { 'colorscheme': 'shades_of_purple' }

" Start NERDTree and put the cursor back in the other window.
autocmd VimEnter * NERDTree | wincmd p
let g:NERDTreeWinSize=50


@@ 32,6 37,8 @@ set linebreak
set termwinsize=10x0
set viminfo+=n~/.vim/viminfo

set fillchars+=vert:\ 

" Autorefresh nerdtree
autocmd BufWritePost * NERDTreeFocus | execute 'normal R' | wincmd p