enc: update eva-theme config

This commit is contained in:
Pojok Code 2024-08-03 18:05:19 +07:00
parent 87a44d46db
commit e76eea2ebb
4 changed files with 19 additions and 5 deletions

View file

@ -15,7 +15,7 @@
-- darcula-dark
-- juliana
-- Eva-Dark, Eva-Dark-Italic, Eva-Dark-Bold
pcode.colorscheme = "dracula"
pcode.colorscheme = "Eva-Dark-Italic"
-- 0 =off 1= on
pcode.transparent_mode = 0
@ -154,7 +154,7 @@ pcode.refactoring = false
pcode.database = false
-- https://github.com/rest-nvim/rest.nvim
pcode.rest_client = true
pcode.rest_client = false
-- https://github.com/mfussenegger/nvim-dap
pcode.nvim_dap = true -- not support for windows os (auto config mason-nvim-dap)

View file

@ -30,6 +30,11 @@ if substring(tostring(clr), "Eva") and true or false then
hi(0, "NvimTreeGitMergeIcon", { bg = color.dark, fg = color.git.diffModified })
hi(0, "NvimTreeGitStagedIcon", { bg = color.dark, fg = color.git.stagedModified })
hi(0, "MiniIndentscopeSymbol", { bg = color.dark, fg = color.parameter })
-- cursor
-- hi(0, "Cursor", { bg = "#838FA7", fg = "#838FA7" })
hi(0, "CursorColumn", { bg = color.dark, fg = "#838FA7" })
hi(0, "TermCursor", { bg = "#838FA7", fg = color.dark })
hi(0, "TermCursorNC", { bg = "#838FA7", fg = color.dark })
end,
})
end,

View file

@ -86,6 +86,16 @@ vim.filetype.add({
},
})
-- config cursor
vim.opt.guicursor = {
"n-v:block", -- Normal, Visual, Command mode: block cursor
"i-ci-ve-c:ver25", -- Insert, Command-line Insert, Visual mode: vertical bar cursor
"r-cr:hor20", -- Replace, Command-line Replace mode: horizontal bar cursor
"o:hor50", -- Operator-pending mode: horizontal bar cursor
"a:blinkwait700-blinkoff400-blinkon250", -- Blinking settings
"sm:block-blinkwait175-blinkoff150-blinkon175", -- Select mode: block cursor with blinking
}
-- Autoformat
-- augroup _lsp
-- autocmd!