Add more themes, set default to moonfly
This commit is contained in:
parent
a5f8ce6c09
commit
4e7b80cdd0
1 changed files with 21 additions and 2 deletions
23
init.vim
23
init.vim
|
@ -17,9 +17,12 @@ Plug 'vim-airline/vim-airline-themes'
|
||||||
Plug 'honza/vim-snippets'
|
Plug 'honza/vim-snippets'
|
||||||
Plug 'itchyny/vim-cursorword'
|
Plug 'itchyny/vim-cursorword'
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
Plug 'olimorris/onedarkpro.nvim'
|
Plug 'navarasu/onedark.nvim'
|
||||||
Plug 'ellisonleao/gruvbox.nvim'
|
Plug 'ellisonleao/gruvbox.nvim'
|
||||||
Plug 'dracula/vim'
|
Plug 'dracula/vim'
|
||||||
|
Plug 'vigoux/oak'
|
||||||
|
Plug 'NLKNguyen/papercolor-theme'
|
||||||
|
Plug 'bluz71/vim-moonfly-colors'
|
||||||
|
|
||||||
"Fuzzy search by Telescope and its dependencies:
|
"Fuzzy search by Telescope and its dependencies:
|
||||||
Plug 'nvim-lua/plenary.nvim'
|
Plug 'nvim-lua/plenary.nvim'
|
||||||
|
@ -55,7 +58,23 @@ nnoremap <C-s> :CocCommand git.chunkInfo<CR>
|
||||||
"theme configuration
|
"theme configuration
|
||||||
syntax enable
|
syntax enable
|
||||||
set termguicolors
|
set termguicolors
|
||||||
colorscheme gruvbox
|
let g:onedark_config = {
|
||||||
|
\ 'style': 'darker',
|
||||||
|
\}
|
||||||
|
let g:PaperColor_Theme_Options = {
|
||||||
|
\ 'language': {
|
||||||
|
\ 'python': {
|
||||||
|
\ 'highlight_builtins' : 1
|
||||||
|
\ },
|
||||||
|
\ 'cpp': {
|
||||||
|
\ 'highlight_standard_library': 1
|
||||||
|
\ },
|
||||||
|
\ 'c': {
|
||||||
|
\ 'highlight_builtins' : 1
|
||||||
|
\ }
|
||||||
|
\ }
|
||||||
|
\ }
|
||||||
|
colorscheme moonfly
|
||||||
let g:airline_theme='dark'
|
let g:airline_theme='dark'
|
||||||
|
|
||||||
set splitright
|
set splitright
|
||||||
|
|
Loading…
Reference in a new issue