diff options
| author | Seth Flynn <[email protected]> | 2021-11-22 23:42:32 -0500 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2021-11-23 01:40:34 -0500 |
| commit | 54edcf280864dcd2bfcbca6b8b2e056ce1270b99 (patch) | |
| tree | efb17b8b850acfe6925252fa2d93d9bd996a676b /nvim | |
| parent | e2cfdf8ee46649d92ff1d1c521ef1bcda45c3d64 (diff) | |
add more stuff
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/.config/nvim/init.vim | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim index 9f9eab2..e6d181f 100644 --- a/nvim/.config/nvim/init.vim +++ b/nvim/.config/nvim/init.vim @@ -6,22 +6,19 @@ call plug#begin() Plug 'itchyny/lightline.vim' -Plug 'arcticicestudio/nord-vim' -Plug 'dracula/vim', { 'as': 'dracula' } Plug 'preservim/nerdtree' Plug 'sheerun/vim-polyglot' +Plug 'dracula/vim', { 'as': 'dracula' } call plug#end() " settings -colorscheme dracula set termguicolors set nocompatible +set tabstop=2 +set shiftwidth=2 set expandtab -set tabstop=4 -set shiftwidth=4 -let g:lightline = { - \ 'colorscheme': 'dracula', - \ } syntax on filetype plugin indent on +colorscheme dracula +let g:lightline = {'colorscheme': 'dracula'} |
