diff options
-rw-r--r-- | nvim/nvim/init.vim | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim index 2eb2689..0ac9ce8 100644 --- a/nvim/nvim/init.vim +++ b/nvim/nvim/init.vim @@ -28,11 +28,15 @@ Plugin 'junegunn/goyo.vim' " .editorconfig file support Plugin 'sgur/vim-editorconfig' +" Dracula colorscheme, just for testing +Plugin 'dracula/vim' + " Add plugins here call vundle#end() " required """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" + " GUI: """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Activate syntax highlighting by default @@ -44,8 +48,9 @@ let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1 set termguicolors set background=dark -" Set default colorscheme but dark comments -> Torte -colorscheme desert +" Set default colorscheme +" colorscheme desert +colorscheme dracula " Highligh column and line " set cursorcolumn |