update colorschemes
This commit is contained in:
parent
b33e2ef61d
commit
cfd8185894
1 changed files with 13 additions and 12 deletions
|
@ -16,8 +16,6 @@ Plugin 'VundleVim/Vundle.vim'
|
||||||
" USEFUL
|
" USEFUL
|
||||||
" comment plugin
|
" comment plugin
|
||||||
Plugin 'tpope/vim-commentary'
|
Plugin 'tpope/vim-commentary'
|
||||||
" Color higlighting
|
|
||||||
Plugin 'norcalli/nvim-colorizer.lua'
|
|
||||||
|
|
||||||
" brackets management
|
" brackets management
|
||||||
Plugin 'machakann/vim-sandwich'
|
Plugin 'machakann/vim-sandwich'
|
||||||
|
@ -26,6 +24,7 @@ Plugin 'machakann/vim-sandwich'
|
||||||
Plugin 'SirVer/ultisnips'
|
Plugin 'SirVer/ultisnips'
|
||||||
|
|
||||||
" WINDOW MANAGEMENT
|
" WINDOW MANAGEMENT
|
||||||
|
|
||||||
" tmux navigator
|
" tmux navigator
|
||||||
Plugin 'christoomey/vim-tmux-navigator'
|
Plugin 'christoomey/vim-tmux-navigator'
|
||||||
|
|
||||||
|
@ -47,8 +46,11 @@ Plugin 'tpope/vim-fugitive'
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plugin 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
" COLORS
|
" COLORS
|
||||||
" color schemes
|
" Plastic colorscheme
|
||||||
Plugin 'flazz/vim-colorschemes'
|
Plugin 'aonemd/kuroi.vim'
|
||||||
|
|
||||||
|
" Color higlighting
|
||||||
|
Plugin 'norcalli/nvim-colorizer.lua'
|
||||||
|
|
||||||
" powerline
|
" powerline
|
||||||
Plugin 'vim-airline/vim-airline'
|
Plugin 'vim-airline/vim-airline'
|
||||||
|
@ -76,11 +78,14 @@ filetype plugin indent on " required
|
||||||
|
|
||||||
" nvim setup
|
" nvim setup
|
||||||
" syntax
|
" syntax
|
||||||
set termguicolors
|
|
||||||
syntax on
|
syntax on
|
||||||
colorscheme Benokai
|
|
||||||
let mapleader=" "
|
let mapleader=" "
|
||||||
|
|
||||||
|
" color settings
|
||||||
|
set termguicolors
|
||||||
|
colorscheme kuroi
|
||||||
|
set background=dark
|
||||||
|
|
||||||
" random settings
|
" random settings
|
||||||
set number
|
set number
|
||||||
set clipboard=unnamed
|
set clipboard=unnamed
|
||||||
|
@ -123,16 +128,11 @@ set splitright
|
||||||
|
|
||||||
" tabs
|
" tabs
|
||||||
nnoremap <leader>t :tabnew<CR>
|
nnoremap <leader>t :tabnew<CR>
|
||||||
nnoremap <C-n> gT
|
|
||||||
nnoremap <C-p> gt
|
|
||||||
|
|
||||||
" Enable folding
|
" Enable folding
|
||||||
set foldmethod=indent
|
set foldmethod=indent
|
||||||
set foldlevel=99
|
set foldlevel=99
|
||||||
|
|
||||||
" remap code folding
|
|
||||||
nnoremap <leader>g za
|
|
||||||
|
|
||||||
" auto reload .vimrc on write
|
" auto reload .vimrc on write
|
||||||
autocmd BufWritePost init.vim source %
|
autocmd BufWritePost init.vim source %
|
||||||
|
|
||||||
|
@ -236,6 +236,7 @@ command! -bang -complete=buffer -nargs=? Bclose call <SID>Bclose(<q-bang>, <q-ar
|
||||||
nnoremap <silent> <Leader>bd :Bclose<CR>
|
nnoremap <silent> <Leader>bd :Bclose<CR>
|
||||||
|
|
||||||
" PLUGIN SETTINGS
|
" PLUGIN SETTINGS
|
||||||
|
|
||||||
" polyglot setup
|
" polyglot setup
|
||||||
let g:polyglot_disabled = ["latex"]
|
let g:polyglot_disabled = ["latex"]
|
||||||
" nerd tree setup
|
" nerd tree setup
|
||||||
|
@ -248,7 +249,7 @@ let g:airline_section_y = ""
|
||||||
let g:airline_section_z = "%l/%L:%c"
|
let g:airline_section_z = "%l/%L:%c"
|
||||||
let g:airline_section_b = "%{airline#util#wrap(airline#extensions#branch#get_head(),0)}"
|
let g:airline_section_b = "%{airline#util#wrap(airline#extensions#branch#get_head(),0)}"
|
||||||
" other stuff
|
" other stuff
|
||||||
let g:airline_theme='solarized'
|
let g:airline_theme='luna'
|
||||||
let g:airline_solarized_bg='dark'
|
let g:airline_solarized_bg='dark'
|
||||||
let g:airline_powerline_fonts = 1
|
let g:airline_powerline_fonts = 1
|
||||||
let g:airline_inactive_collapse=1
|
let g:airline_inactive_collapse=1
|
||||||
|
|
Loading…
Add table
Reference in a new issue