summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nvim/.config/nvim/init.vim6
1 files changed, 5 insertions, 1 deletions
diff --git a/nvim/.config/nvim/init.vim b/nvim/.config/nvim/init.vim
index 3b390a3..6540376 100644
--- a/nvim/.config/nvim/init.vim
+++ b/nvim/.config/nvim/init.vim
@@ -13,6 +13,7 @@ Plug 'junegunn/goyo.vim'
13Plug 'airblade/vim-gitgutter' 13Plug 'airblade/vim-gitgutter'
14Plug 'godlygeek/tabular' 14Plug 'godlygeek/tabular'
15Plug 'plasticboy/vim-markdown' 15Plug 'plasticboy/vim-markdown'
16Plug 'jacoborus/tender.vim'
16call plug#end() 17call plug#end()
17 18
18"sets 19"sets
@@ -20,7 +21,7 @@ set guicursor=
20set number relativenumber 21set number relativenumber
21set mouse=a 22set mouse=a
22"set background=dark 23"set background=dark
23syntax on 24syntax enable
24set cursorline 25set cursorline
25set ignorecase 26set ignorecase
26set smartcase 27set smartcase
@@ -34,6 +35,9 @@ set shiftwidth=4 " number of spaces to use for autoindent
34set expandtab " tabs are space 35set expandtab " tabs are space
35set autoindent 36set autoindent
36set copyindent " copy indent from the previous line 37set copyindent " copy indent from the previous line
38colorscheme tender
39hi Normal ctermbg=16 guibg=#000000
40hi LineNr ctermbg=16 guibg=#000000
37 41
38" deoplete 42" deoplete
39let g:deoplete#enable_at_startup = 1 43let g:deoplete#enable_at_startup = 1