update nvim and hypr conf
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -3,9 +3,9 @@ return {
|
||||
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
||||
config = function()
|
||||
require('lualine').setup({
|
||||
-- options = {
|
||||
-- theme = 'catppuccin'
|
||||
-- },
|
||||
options = {
|
||||
theme = 'catppuccin-mocha'
|
||||
},
|
||||
})
|
||||
end
|
||||
}
|
||||
|
||||
@@ -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'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user