Theme update
This commit is contained in:
parent
f4764a2d86
commit
f7684a5e9d
@ -330,7 +330,9 @@ require('lazy').setup({
|
||||
{
|
||||
"levouh/tint.nvim",
|
||||
config = function()
|
||||
require("tint").setup {}
|
||||
require("tint").setup {
|
||||
highlight_ignore_patterns = { "EndOfBuffer" },
|
||||
}
|
||||
end,
|
||||
},
|
||||
|
||||
@ -345,6 +347,9 @@ require('lazy').setup({
|
||||
Normal = {
|
||||
guibg = "#262626",
|
||||
},
|
||||
NormalNC = {
|
||||
guibg = "#262626",
|
||||
},
|
||||
},
|
||||
}
|
||||
end,
|
||||
@ -501,10 +506,6 @@ cmp.setup {
|
||||
path = 1,
|
||||
},
|
||||
mapping = cmp.mapping.preset.insert {
|
||||
['<C-n>'] = cmp.mapping.select_next_item(),
|
||||
['<C-p>'] = cmp.mapping.select_prev_item(),
|
||||
['<C-d>'] = cmp.mapping.scroll_docs(-4),
|
||||
['<C-f>'] = cmp.mapping.scroll_docs(4),
|
||||
['<C-Space>'] = cmp.mapping.complete {},
|
||||
['<CR>'] = cmp.mapping.confirm {
|
||||
behavior = cmp.ConfirmBehavior.Replace,
|
||||
@ -602,14 +603,14 @@ require('nvim-treesitter.configs').setup {
|
||||
[']m'] = '@function.outer',
|
||||
[']]'] = '@class.outer',
|
||||
},
|
||||
goto_next_end = {
|
||||
[']M'] = '@function.outer',
|
||||
[']['] = '@class.outer',
|
||||
},
|
||||
goto_previous_start = {
|
||||
['[m'] = '@function.outer',
|
||||
['[['] = '@class.outer',
|
||||
},
|
||||
goto_next_end = {
|
||||
[']M'] = '@function.outer',
|
||||
[']['] = '@class.outer',
|
||||
},
|
||||
goto_previous_end = {
|
||||
['[M'] = '@function.outer',
|
||||
['[]'] = '@class.outer',
|
||||
|
||||
@ -34,6 +34,7 @@ function theme.setup()
|
||||
DiffText = { fg = p.color5, bg = p.background },
|
||||
Directory = { fg = p.color4 },
|
||||
EndOfBuffer = { fg = p.background },
|
||||
EndOfBufferNC = { fg = p.background },
|
||||
Error = { fg = p.color1, bg = p.background },
|
||||
ErrorMsg = { fg = p.color1, bg = p.background },
|
||||
Exception = { fg = p.color6 },
|
||||
@ -81,8 +82,8 @@ function theme.setup()
|
||||
SpellLocal = { fg = p.color4 },
|
||||
SpellRare = { fg = p.color6 },
|
||||
Statement = { fg = p.color6 },
|
||||
StatusLine = { fg = p.foreground, bg = p.color16 },
|
||||
StatusLineNC = { bg = p.background, fg = p.color16 },
|
||||
StatusLine = { fg = p.foreground, bg = p.background },
|
||||
StStatusLine = { fg = p.foreground, bg = p.background },
|
||||
Storage = { fg = p.color5 },
|
||||
StorageClass = { fg = p.color7 },
|
||||
String = { fg = p.color2 },
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user