update nvim and hypr conf

This commit is contained in:
2026-06-22 13:33:12 +02:00
parent 04d720f6c8
commit b80cd3136b
10 changed files with 140 additions and 112 deletions

View File

@@ -6,7 +6,21 @@ return
lazy = false,
config = function()
require("catppuccin").setup({
transparent_background = true,
transparent_background = false,
custom_highlights = function(colors)
return {
Normal = { bg = colors.base },
NormalNC = { bg = colors.mantle },
WinSeparator = { fg = colors.surface1, bg = colors.mantle },
StatusLine = { fg = colors.text, bg = colors.surface0 },
StatusLineNC = { fg = colors.overlay0, bg = colors.mantle },
CursorLine = { bg = colors.surface0 },
}
end
})
vim.cmd.colorscheme "catppuccin"

View File

@@ -3,9 +3,9 @@ return {
dependencies = { 'nvim-tree/nvim-web-devicons' },
config = function()
require('lualine').setup({
-- options = {
-- theme = 'catppuccin'
-- },
options = {
theme = 'catppuccin-mocha'
},
})
end
}

View File

@@ -7,10 +7,10 @@ vim.opt.expandtab = true
vim.opt.clipboard:append("unnamedplus")
vim.cmd("highlight Normal guibg=none")
vim.cmd("highlight NonText guibg=none")
vim.cmd("highlight Normal ctermbg=none")
vim.cmd("highlight NonText ctermbg=none")
-- vim.cmd("highlight Normal guibg=none")
-- vim.cmd("highlight NonText guibg=none")
-- vim.cmd("highlight Normal ctermbg=none")
-- vim.cmd("highlight NonText ctermbg=none")
vim.o.winborder = 'rounded'