diff options
author | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2019-07-26 11:05:00 +0200 |
---|---|---|
committer | Ekaitz Zárraga <ekaitz.zarraga@protonmail.com> | 2019-07-26 11:05:00 +0200 |
commit | 15f83d7a1d10f7101d79fec0c86872afdb76ffb9 (patch) | |
tree | f69605515e0a05ab2fa5bc8cee227acbd5a3056f | |
parent | dada7903408d41b16f9e2942e54c85266592c910 (diff) |
Add dracula for nvim
-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 |