diff options
| -rw-r--r-- | colors/matugen.lua | 2 | ||||
| -rw-r--r-- | lua/bee/init.lua | 34 | ||||
| -rw-r--r-- | module.nix | 10 |
3 files changed, 5 insertions, 41 deletions
diff --git a/colors/matugen.lua b/colors/matugen.lua index 73493a1..85b5dc2 100644 --- a/colors/matugen.lua +++ b/colors/matugen.lua @@ -13,7 +13,7 @@ if config_home == nil or #config_home == 0 then config_home = vim.fs.joinpath(vim.env.HOME, ".config") end -local colors_file_path = vim.fs.joinpath(config_home, "beestuff", "nvim-colors.json") +local colors_file_path = vim.fs.joinpath(config_home, "neovim", "nvim-colors.json") local colors_file = io.open(colors_file_path, "r") if colors_file == nil then vim.notify( diff --git a/lua/bee/init.lua b/lua/bee/init.lua index a4c4a63..15d7e02 100644 --- a/lua/bee/init.lua +++ b/lua/bee/init.lua @@ -45,40 +45,6 @@ nixInfo.lze.load({ colorscheme = { "tokyonight", "tokyonight-day", "tokyonight-moon", "tokyonight-storm", "tokyonight-night" }, }, { - - "kanagawa.nvim", - auto_enable = true, - colorscheme = { "kanagawa", "kanagawa-dragon", "kanagawa-lotus" }, - after = function(_) - require("kanagawa").setup({ - compile = false, -- idk why but it loads faster with it disabled - theme = "dragon", - background = { - dark = "dragon", - light = "lotus", - }, - }) - end, - }, - { - "kanagawa-paper.nvim", - auto_enable = true, - colorscheme = { "kanagawa-paper", "kanagawa-paper-ink", "kanagawa-paper-canvas" }, - after = function(_) - require("kanagawa-paper").setup({ - cache = true, - gutter = true, - styles = { - comment = { italic = true }, - functions = { italic = false }, - keyword = { italic = true, bold = false }, - statement = { italic = true, bold = false }, - type = { italic = false }, - }, - }) - end, - }, - { "nvim-surround", auto_enable = true, event = "DeferredUIEnter", @@ -142,14 +142,12 @@ inputs: data = nvim-web-devicons; lazy = false; } - # { - # data = config.nvim-lib.neovimPlugins.base46; - # lazy = false; - # } + { + data = config.nvim-lib.neovimPlugins.base46; + lazy = false; + } tokyonight-nvim - kanagawa-nvim - kanagawa-paper-nvim config.nvim-lib.neovimPlugins.neogit blink-indent blink-pairs |
