switch colorscheme

This commit is contained in:
Jidbo 2022-01-24 18:56:10 +01:00 committed by saibotk
parent e0611a8b3a
commit 8913b11668
Signed by: saibotk
GPG key ID: 67585F0065E261D5
3 changed files with 6 additions and 4 deletions

View file

@ -44,6 +44,9 @@ vim.cmd [[hi NvimTreeGitStaged guifg=#DC2626]]
vim.cmd [[hi NvimTreeGitNew guifg=#DC2626]] vim.cmd [[hi NvimTreeGitNew guifg=#DC2626]]
vim.cmd [[hi NvimTreeGitDeleted guifg=#DC2626]] vim.cmd [[hi NvimTreeGitDeleted guifg=#DC2626]]
vim.cmd [[hi NvimTreeSpecialFile guifg=#F8FAFC ]] vim.cmd [[hi NvimTreeSpecialFile guifg=#F8FAFC ]]
vim.cmd [[hi NvimTreeFolderName guifg=#D1D5DB ]]
vim.cmd [[hi NvimTreeOpenedFolderName guifg=#D1D5DB ]]
vim.cmd [[hi NvimTreeEmptyFolderName guifg=#D1D5DB ]]
-- setup -- setup
require'nvim-tree'.setup { require'nvim-tree'.setup {
@ -61,7 +64,7 @@ require'nvim-tree'.setup {
}, },
git = { git = {
enable = true, enable = true,
ignore = true, ignore = false,
timeout = 500, timeout = 500,
}, },
view = { view = {

View file

@ -4,14 +4,13 @@
vim.cmd [[ vim.cmd [[
syntax on syntax on
let mapleader=" " let mapleader=" "
colorscheme kuroi colorscheme sonokai
hi MatchParen guibg=NONE guifg=red gui=bold hi MatchParen guibg=NONE guifg=red gui=bold
set shortmess+=c set shortmess+=c
]] ]]
-- color settings -- color settings
vim.opt.termguicolors=true vim.opt.termguicolors=true
vim.opt.background='dark'
-- random settings -- random settings
vim.opt.number=true vim.opt.number=true

View file

@ -52,7 +52,7 @@ Plug 'airblade/vim-gitgutter'
-- =================== -- ===================
-- Plastic colorscheme -- Plastic colorscheme
Plug 'jidbo/kuroi.vim' Plug 'jidbo/sonokai'
-- Color higlighting -- Color higlighting
Plug 'norcalli/nvim-colorizer.lua' Plug 'norcalli/nvim-colorizer.lua'