diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-19 19:31:35 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-19 19:31:35 -0400 |
| commit | f27f140167fed2b76457b05d9d22ca86a7001abe (patch) | |
| tree | 294d46f1b83738b94559855ca297935c58e111ac /pkgs/custom-neovim | |
| parent | 95928a3d0b9ade5e33a42c96e00e79894ce3fde7 (diff) | |
neovim: working on custom setup
Diffstat (limited to 'pkgs/custom-neovim')
| -rw-r--r-- | pkgs/custom-neovim/config/colors/oxocarbon-base16.lua (renamed from pkgs/custom-neovim/config/colors/oxocarbon.lua) | 5 | ||||
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/colorizer.lua | 7 | ||||
| -rw-r--r-- | pkgs/custom-neovim/config/lua/plugins/colorschemes.lua | 17 | ||||
| -rw-r--r-- | pkgs/custom-neovim/default.nix | 4 |
4 files changed, 25 insertions, 8 deletions
diff --git a/pkgs/custom-neovim/config/colors/oxocarbon.lua b/pkgs/custom-neovim/config/colors/oxocarbon-base16.lua index 368e019..6bdf4fa 100644 --- a/pkgs/custom-neovim/config/colors/oxocarbon.lua +++ b/pkgs/custom-neovim/config/colors/oxocarbon-base16.lua @@ -11,11 +11,10 @@ require("mini.base16").setup { base08 = "#3ddbd9", base09 = "#78a9ff", base0A = "#ee5396", - base0B = "#33b1ff", + base0B = "#be95ff", base0C = "#ff7eb6", base0D = "#42be65", - base0E = "#be95ff", + base0E = "#33b1ff", base0F = "#82cfff", }, - -- use_cterm = true, } diff --git a/pkgs/custom-neovim/config/lua/plugins/colorizer.lua b/pkgs/custom-neovim/config/lua/plugins/colorizer.lua new file mode 100644 index 0000000..859d3e1 --- /dev/null +++ b/pkgs/custom-neovim/config/lua/plugins/colorizer.lua @@ -0,0 +1,7 @@ +return { + "nvim-colorizer.lua", + lazy = false, + after = function () + require("colorizer").setup() + end +} diff --git a/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua b/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua index c59daa1..fd451a2 100644 --- a/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua +++ b/pkgs/custom-neovim/config/lua/plugins/colorschemes.lua @@ -1,13 +1,22 @@ return { { + "mini.base16", + lazy = false, + }, + { "nightfox.nvim", + enabled = false, lazy = false, after = function () vim.cmd.colorscheme("carbonfox") end }, - -- { - -- "mini.base16", - -- lazy = false, - -- }, + { + "vim-gruvbox8", + enabled = true, + lazy = false, + after = function () + vim.cmd.colorscheme("gruvbox8") + end + }, } diff --git a/pkgs/custom-neovim/default.nix b/pkgs/custom-neovim/default.nix index 092fb13..f3d457a 100644 --- a/pkgs/custom-neovim/default.nix +++ b/pkgs/custom-neovim/default.nix @@ -14,7 +14,6 @@ inputs.mnw.lib.wrap pkgs { lz-n # Lazy loader nvim-treesitter.withAllGrammars # All treesitter grammars vim-nix # Indentation for nix files - mini-base16 ]; opt = [ # Lazy loaded. @@ -26,6 +25,7 @@ inputs.mnw.lib.wrap pkgs { mini-files mini-extra plenary-nvim + nvim-colorizer-lua # Completion Plugins blink-cmp @@ -42,7 +42,9 @@ inputs.mnw.lib.wrap pkgs { neogit # Colorschemes + mini-base16 nightfox-nvim + vim-gruvbox8 ]; }; luaFiles = [./config/init.lua]; |
