change theme to tokyonight
This commit is contained in:
parent
d960483401
commit
06652b715c
1 changed files with 6 additions and 1 deletions
|
@ -19,6 +19,10 @@ call plug#begin(g:plugged_home)
|
||||||
Plug 'Chiel92/vim-autoformat'
|
Plug 'Chiel92/vim-autoformat'
|
||||||
" Theme
|
" Theme
|
||||||
Plug 'pineapplegiant/spaceduck', { 'branch': 'main' }
|
Plug 'pineapplegiant/spaceduck', { 'branch': 'main' }
|
||||||
|
Plug 'folke/tokyonight.nvim'
|
||||||
|
Plug 'EdenEast/nightfox.nvim'
|
||||||
|
Plug 'bluz71/vim-moonfly-colors'
|
||||||
|
Plug 'NLKNguyen/papercolor-theme'
|
||||||
" Python Plugins
|
" Python Plugins
|
||||||
Plug 'Valloric/YouCompleteMe'
|
Plug 'Valloric/YouCompleteMe'
|
||||||
Plug 'vim-syntastic/syntastic'
|
Plug 'vim-syntastic/syntastic'
|
||||||
|
@ -77,7 +81,8 @@ if exists('+termguicolors')
|
||||||
set termguicolors
|
set termguicolors
|
||||||
endif
|
endif
|
||||||
|
|
||||||
colorscheme spaceduck
|
" colorscheme spaceduck
|
||||||
|
colorscheme tokyonight-night
|
||||||
|
|
||||||
" set the number style to hybrid
|
" set the number style to hybrid
|
||||||
set number relativenumber
|
set number relativenumber
|
||||||
|
|
Loading…
Reference in a new issue