diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-03-13 18:57:31 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2021-03-13 18:57:31 +0530 |
commit | 4c1ded73d97ad6757c2b140774ac0c7c406e71ab (patch) | |
tree | acb922c53718bd43ee5951af6f1725d34ba30d33 | |
parent | b997b270e116468533df746c01393b906800d30d (diff) |
configured lightline.vim, cleaned up init.vim
-rw-r--r-- | nvim/init.vim | 29 |
1 files changed, 13 insertions, 16 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index 41e7ff80..4ef09275 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -6,7 +6,8 @@ Plug 'alvan/vim-closetag' Plug 'Yggdroot/indentLine' Plug 'rrethy/vim-hexokinase', { 'do': 'make hexokinase' } Plug 'neoclide/coc.nvim', {'branch': 'release'} -Plug 'sts10/vim-pink-moon' +" Plug 'dracula/vim', { 'as': 'dracula' } +" Plug 'sts10/vim-pink-moon' call plug#end() @@ -31,27 +32,23 @@ let g:coc_global_extentions = [ \ 'coc-pairs', \ 'coc-eslint', \ 'coc-prettier', - \ 'coc-go', + \ 'coc-go', \ 'coc-json', \ 'coc-css', \ 'coc-html', \ ] -" airline config -let g:airline#extensions#tabline#enabled = 1 -" shades of purple airline theme -let g:shades_of_purple_airline = 1 -let g:airline_theme='shades_of_purple' - " enabling the theme -if (has("termguicolors")) - set termguicolors -endif +" colorscheme dracula -syntax enable -set background=dark -colorscheme pink-moon +" line numbers +:set number +:set nu +" remove vim status because lightline replaces it +set noshowmode -:set number relativenumber -:set nu rnu +" lightline config +let g:lightline = { + \ 'colorscheme': 'wombat', + \ } |