Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Cleanup colorschemes for nvim

+14 -11
+14 -11
nvim/lua/plugins.lua
··· 16 16 17 17 require("lazy").setup({ 18 18 -- Color themes 19 - "shaunsingh/nord.nvim", "shaunsingh/moonlight.nvim", 20 - "folke/tokyonight.nvim", "cranberry-clockworks/coal.nvim", 21 - "hardselius/warlock", 22 - { "catppuccin/nvim", name = "catppuccin", priority = 1000 }, 19 + { "shaunsingh/nord.nvim", priority = 1000, lazy = true }, 20 + { "shaunsingh/moonlight.nvim", priority = 1000, lazy = true }, 21 + { "folke/tokyonight.nvim", priority = 1000, lazy = true }, 22 + { "cranberry-clockworks/coal.nvim", priority = 1000, lazy = true }, 23 + { "hardselius/warlock", priority = 1000, lazy = true }, 24 + { "sontungexpt/witch", priority = 1000, lazy = true, config = true }, 25 + { "catppuccin/nvim", name = "catppuccin", priority = 1000, lazy = true }, 23 26 { 24 27 "neanias/everforest-nvim", 25 28 version = false, 26 - lazy = false, 29 + lazy = true, 27 30 priority = 500, -- make sure to load this before all the other start plugins 28 31 main = "everforest", 29 32 opts = { background = "hard" } 30 33 }, 31 - { "rebelot/kanagawa.nvim", opts = { compile = true } }, 34 + { "rebelot/kanagawa.nvim", opts = { compile = true }, priority = 1000, lazy = true }, 32 35 -- show indents and whitespace characters 33 36 "lukas-reineke/indent-blankline.nvim", -- Completion 34 37 -- Completion ··· 306 309 end, 307 310 dependencies = { "PaterJason/cmp-conjure" } 308 311 }, 309 - { "PaterJason/cmp-conjure", lazy = true }, 310 - { "p1xelHer0/gerbil.nvim", ft = "scheme" }, -- Fennel, Luasthp 311 - { "jaawerth/fennel.vim", lazy = true, ft = "fennel" }, 312 - { "rktjmp/hotpot.nvim", lazy = true, ft = "fennel" }, 313 - { "Olical/nfnl", ft = "fennel" }, -- Rust stuff 312 + { "PaterJason/cmp-conjure", lazy = true }, 313 + { "p1xelHer0/gerbil.nvim", ft = "scheme" }, -- Fennel, Luasthp 314 + { "jaawerth/fennel.vim", lazy = true, ft = "fennel" }, 315 + { "rktjmp/hotpot.nvim", lazy = true, ft = "fennel" }, 316 + { "Olical/nfnl", ft = "fennel" }, -- Rust stuff 314 317 { 315 318 "simrat39/rust-tools.nvim", 316 319 ft = { "rust" },