Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0c218da55a | |||
| 5f8c78ba12 |
@ -1,11 +1,35 @@
|
|||||||
return {
|
return {
|
||||||
-- Color scheme
|
-- Color scheme
|
||||||
{
|
{
|
||||||
"catppuccin/nvim",
|
"rebelot/kanagawa.nvim",
|
||||||
name = "catppuccin",
|
name = "kanagawa",
|
||||||
priority = 1000,
|
priority = 1000,
|
||||||
config = function()
|
config = function()
|
||||||
vim.cmd.colorscheme "catppuccin-mocha"
|
require('kanagawa').setup({
|
||||||
|
compile = true, -- enable compiling the colorscheme
|
||||||
|
undercurl = true, -- enable undercurls
|
||||||
|
commentStyle = { italic = true },
|
||||||
|
functionStyle = {},
|
||||||
|
keywordStyle = { italic = true },
|
||||||
|
statementStyle = { bold = true },
|
||||||
|
typeStyle = {},
|
||||||
|
transparent = false, -- do not set background color
|
||||||
|
dimInactive = false, -- dim inactive window `:h hl-NormalNC`
|
||||||
|
terminalColors = true, -- define vim.g.terminal_color_{0,17}
|
||||||
|
colors = { -- add/modify theme and palette colors
|
||||||
|
palette = {},
|
||||||
|
theme = { wave = {}, lotus = {}, dragon = {}, all = {} },
|
||||||
|
},
|
||||||
|
overrides = function(colors) -- add/modify highlights
|
||||||
|
return {}
|
||||||
|
end,
|
||||||
|
theme = "wave", -- Load "wave" theme
|
||||||
|
background = { -- map the value of 'background' option to a theme
|
||||||
|
dark = "wave", -- try "dragon" !
|
||||||
|
light = "lotus"
|
||||||
|
},
|
||||||
|
})
|
||||||
|
vim.cmd("colorscheme kanagawa")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -145,7 +169,7 @@ return {
|
|||||||
dependencies = { "nvim-tree/nvim-web-devicons" },
|
dependencies = { "nvim-tree/nvim-web-devicons" },
|
||||||
config = function()
|
config = function()
|
||||||
require("lualine").setup({
|
require("lualine").setup({
|
||||||
options = { theme = "catppuccin" },
|
options = { theme = "kanagawa" },
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
@ -161,13 +185,13 @@ return {
|
|||||||
})
|
})
|
||||||
|
|
||||||
wk.add({
|
wk.add({
|
||||||
{ "<leader>e", desc = "Toggle file explorer" },
|
{ "<leader>e", desc = "Toggle file explorer" },
|
||||||
{ "<leader>f", group = "Find" },
|
{ "<leader>f", group = "Find" },
|
||||||
{ "<leader>ff", desc = "Find files" },
|
{ "<leader>ff", desc = "Find files" },
|
||||||
{ "<leader>fg", desc = "Live grep" },
|
{ "<leader>fg", desc = "Live grep" },
|
||||||
{ "<leader>fb", desc = "Find buffers" },
|
{ "<leader>fb", desc = "Find buffers" },
|
||||||
{ "<leader>w", desc = "Save" },
|
{ "<leader>w", desc = "Save" },
|
||||||
{ "<leader>q", desc = "Quit" },
|
{ "<leader>q", desc = "Quit" },
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user