Theme update

This commit is contained in:
Christoffer Martinsson 2023-06-13 19:39:55 +02:00
parent f4764a2d86
commit f7684a5e9d
2 changed files with 13 additions and 11 deletions

View File

@ -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',

View File

@ -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 },