colorsheme to kanagawa
This commit is contained in:
@@ -74,6 +74,7 @@ return packer.startup(function(use)
|
|||||||
-- ----------------------------------------------------
|
-- ----------------------------------------------------
|
||||||
use { "bluz71/vim-nightfly-colors", as = "nighfly" }
|
use { "bluz71/vim-nightfly-colors", as = "nighfly" }
|
||||||
use { "bluz71/vim-moonfly-colors", as = "moonfly" }
|
use { "bluz71/vim-moonfly-colors", as = "moonfly" }
|
||||||
|
use { "rebelot/kanagawa.nvim", as = "kanagawa"}
|
||||||
|
|
||||||
-- ----------------------------------------------------
|
-- ----------------------------------------------------
|
||||||
-- lualine (status line)
|
-- lualine (status line)
|
||||||
|
|||||||
@@ -1,15 +1,18 @@
|
|||||||
local colorscheme = "moonfly"
|
-- local colorscheme = "moonfly"
|
||||||
|
local colorscheme = "kanagawa-wave"
|
||||||
|
|
||||||
local custom_highlight =
|
local custom_highlight =
|
||||||
vim.api.nvim_create_augroup( "CustomHighlight", {})
|
vim.api.nvim_create_augroup( "CustomHighlight", {})
|
||||||
vim.api.nvim_create_autocmd( "ColorScheme", {
|
vim.api.nvim_create_autocmd( "ColorScheme", {
|
||||||
|
-- pattern = "kanagawa-wave",
|
||||||
|
-- pattern = "catppuccin",
|
||||||
pattern = "nightfly",
|
pattern = "nightfly",
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.api.nvim_set_hl( 0, "String", { fg = "#00A000", italic = false })
|
vim.api.nvim_set_hl( 0, "String", { fg = "#00A000", italic = false })
|
||||||
vim.api.nvim_set_hl( 0, "Comment", { fg = "#808080", italic = false })
|
vim.api.nvim_set_hl( 0, "Comment", { fg = "#808080", italic = false })
|
||||||
vim.api.nvim_set_hl( 0, "Function", { fg = "#82aaff", italic = false })
|
vim.api.nvim_set_hl( 0, "Function", { fg = "#82aaff", italic = false })
|
||||||
vim.api.nvim_set_hl( 0, "CursorLineNr", { fg = "#82aaff", italic = false })
|
vim.api.nvim_set_hl( 0, "CursorLineNr", { fg = "#82aaff", italic = false })
|
||||||
vim.api.nvim_set_hl( 0, "Delimiter", { fg = "#ff0000", italic = false })
|
vim.api.nvim_set_hl( 0, "Delimiter", { fg = "#ff0000", italic = false })
|
||||||
end,
|
end,
|
||||||
|
|
||||||
group = custom_highlight,
|
group = custom_highlight,
|
||||||
|
|||||||
Reference in New Issue
Block a user