Update, added a cuple plugins and fixed tab lenght
This commit is contained in:
10
init.vim
10
init.vim
@@ -1,14 +1,21 @@
|
|||||||
set number
|
set relativenumber
|
||||||
set autoindent
|
set autoindent
|
||||||
set termguicolors
|
set termguicolors
|
||||||
set cursorline
|
set cursorline
|
||||||
|
set ts=4 sw=4
|
||||||
|
|
||||||
call plug#begin()
|
call plug#begin()
|
||||||
Plug 'preservim/nerdtree'
|
Plug 'preservim/nerdtree'
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
Plug 'gilgigilgil/anderson.vim'
|
Plug 'gilgigilgil/anderson.vim'
|
||||||
Plug 'sainnhe/sonokai'
|
Plug 'sainnhe/sonokai'
|
||||||
|
Plug 'numirias/semshi', { 'do': ':UpdateRemotePlugins' }
|
||||||
|
Plug 'bfrg/vim-cpp-modern'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
||||||
|
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
|
||||||
|
|
||||||
" Start NERDTree. If a file is specified, move the cursor to its window.
|
" Start NERDTree. If a file is specified, move the cursor to its window.
|
||||||
autocmd StdinReadPre * let s:std_in=1
|
autocmd StdinReadPre * let s:std_in=1
|
||||||
autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif
|
autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif
|
||||||
@@ -38,5 +45,4 @@ let g:airline_powerline_fonts = 1
|
|||||||
|
|
||||||
let g:sonokai_style = 'shusia'
|
let g:sonokai_style = 'shusia'
|
||||||
let g:sonokai_better_performance = 1
|
let g:sonokai_better_performance = 1
|
||||||
|
|
||||||
colorscheme sonokai
|
colorscheme sonokai
|
||||||
|
|||||||
Reference in New Issue
Block a user