diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/general.vim | 11 | ||||
-rw-r--r-- | modules/plugins.vim | 33 | ||||
-rw-r--r-- | modules/theme.vim | 21 |
3 files changed, 65 insertions, 0 deletions
diff --git a/modules/general.vim b/modules/general.vim new file mode 100644 index 00000000..23f7a85b --- /dev/null +++ b/modules/general.vim @@ -0,0 +1,11 @@ +" Be IMproved +if &compatible + set nocompatible +endif + +" Gives vim abilty to recognize filetypes +filetype plugin indent on +" Enables syntax highlighing +syntax enable + +let g:python3_host_prog = '~/Miniconda/envs/neovim/bin/python3.7' diff --git a/modules/plugins.vim b/modules/plugins.vim new file mode 100644 index 00000000..3f55a38c --- /dev/null +++ b/modules/plugins.vim @@ -0,0 +1,33 @@ +" Add the dein installation directory into runtimepath +set runtimepath+=~/.config/nvim/dein/repos/github.com/Shougo/dein.vim + +if dein#load_state('~/.config/nvim/dein') + call dein#begin('~/.config/nvim/dein') + + " Themes + call dein#add('liuchengxu/space-vim-dark') + call dein#add('joshdick/onedark.vim') + call dein#add('morhetz/gruvbox') + call dein#add('jacoborus/tender.vim') + " Better Syntax Support + call dein#add('sheerun/vim-polyglot') + " powerline + call dein#add('vim-airline/vim-airline') + call dein#add('vim-airline/vim-airline-themes') + + call dein#add('~/.config/nvim/dein/repos/github.com/Shougo/dein.vim') + call dein#add('Shougo/deoplete.nvim') + if !has('nvim') + call dein#add('roxma/nvim-yarp') + call dein#add('roxma/vim-hug-neovim-rpc') + endif + + call dein#end() + call dein#save_state() +endif + + +" If you want to install not installed plugins on startup. +if dein#check_install() + call dein#install() +endif diff --git a/modules/theme.vim b/modules/theme.vim new file mode 100644 index 00000000..1679b2e4 --- /dev/null +++ b/modules/theme.vim @@ -0,0 +1,21 @@ + +" Switch to whatever colorscheme you like +"colorscheme onedark +"colorscheme gruvbox +colorscheme tender + +" This chunk is just for spacevim theme +"colorscheme space-vim-dark +"let g:space_vim_dark_background = 235 +"color space-vim-dark + +" gray comments +hi Comment guifg=#5C6370 ctermfg=59 +" this will show italics if your terminal supports that +hi Comment cterm=italic + +" checks if your terminal has 24-bit color support +if (has("termguicolors")) + set termguicolors + hi LineNr ctermbg=NONE guibg=NONE +endif |