nvim: added lightline with codedark colorscheme

master
TiynGER 4 years ago
parent 9ffc9f80fd
commit 7314ee7ea1

@ -13,6 +13,7 @@ Plug 'airblade/vim-gitgutter' " git upgrades
Plug 'alvan/vim-closetag' " auto close HTML tags Plug 'alvan/vim-closetag' " auto close HTML tags
Plug 'donRaphaco/neotex' , {'for': 'tex'} " asynchronous pdf rendering Plug 'donRaphaco/neotex' , {'for': 'tex'} " asynchronous pdf rendering
Plug 'frazrepo/vim-rainbow' " colorized matching brackets Plug 'frazrepo/vim-rainbow' " colorized matching brackets
Plug 'itchyny/lightline.vim' " fancy statusline
Plug 'junegunn/fzf.vim' " quickly jump files using fzf Plug 'junegunn/fzf.vim' " quickly jump files using fzf
Plug 'lervag/vimtex' , {'for' : 'tex'} " tex library for autocompletion Plug 'lervag/vimtex' , {'for' : 'tex'} " tex library for autocompletion
Plug 'majutsushi/tagbar', {'on': 'TagbarToggle'} " show tags Plug 'majutsushi/tagbar', {'on': 'TagbarToggle'} " show tags
@ -51,6 +52,9 @@ let g:neotex_enabled = 2
" frazrepo/vim-rainbow " frazrepo/vim-rainbow
au FileType,BufNewFile,BufRead java,c,cpp,py,h call rainbow#load() au FileType,BufNewFile,BufRead java,c,cpp,py,h call rainbow#load()
" itchyny/lightline.vim
let g:lightline = { 'colorscheme': 'codedark'}
" junegunn/fzf.vim " junegunn/fzf.vim
let $FZF_DEFAULT_COMMAND = 'find . ~ -type f' let $FZF_DEFAULT_COMMAND = 'find . ~ -type f'
nmap <F4> :FZF<CR> nmap <F4> :FZF<CR>
@ -159,6 +163,9 @@ endfunction
set go=a set go=a
" dont show status in commandline due to lightline
set noshowmode
" enable mouse for all modes " enable mouse for all modes
set mouse=a set mouse=a
set clipboard+=unnamedplus set clipboard+=unnamedplus

Loading…
Cancel
Save