diff --git a/config/nvim/lua/core/plugin_config/kanagawa.lua b/config/nvim/lua/core/plugin_config/kanagawa.lua deleted file mode 100644 index 33b27d3b..00000000 --- a/config/nvim/lua/core/plugin_config/kanagawa.lua +++ /dev/null @@ -1,30 +0,0 @@ --- Default options: -require("kanagawa").setup({ - compile = false, -- 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 = "dragon", -- Load "wave" theme when 'background' option is not set - background = { - -- map the value of 'background' option to a theme - dark = "dragon", -- try "dragon" ! - light = "lotus", - }, -}) - --- setup must be called before loading -vim.cmd("colorscheme kanagawa") diff --git a/config/nvim/lua/core/plugins.lua b/config/nvim/lua/core/plugins.lua index ddb68fb0..3310a406 100644 --- a/config/nvim/lua/core/plugins.lua +++ b/config/nvim/lua/core/plugins.lua @@ -23,9 +23,6 @@ local plugins = { -- default bar only looks good on linux "nvim-lualine/lualine.nvim", - -- colorschemes - "rebelot/kanagawa.nvim", - -- syntax highlighting apparently "nvim-treesitter/nvim-treesitter", "windwp/nvim-ts-autotag",