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.

everforest theme for nvim

+12 -1
+2 -1
nvim/init.lua
··· 5 5 -- Load Plugins 6 6 require("plugins") 7 7 -- Color Scheme 8 - vim.cmd([[colorscheme tokyonight-storm]]) 8 + vim.cmd([[colorscheme everforest]]) 9 9 --vim.cmd([[colorscheme kanagawa]]) 10 10 -- Config for Nord, which I usually use 11 11 --vim.g.nord_italic = false 12 12 --vim.g.nord_bold = false 13 13 --vim.opt.background = "light" 14 14 vim.opt.background = "dark" 15 + 15 16 16 17 -- Formatting and vim config 17 18 vim.opt.expandtab = true
+10
nvim/lua/plugins.lua
··· 30 30 "cranberry-clockworks/coal.nvim", 31 31 "hardselius/warlock", 32 32 { 33 + "neanias/everforest-nvim", 34 + version = false, 35 + lazy = false, 36 + priority = 1000, -- make sure to load this before all the other start plugins 37 + main = "everforest", 38 + opts = { 39 + background = "hard", 40 + }, 41 + }, 42 + { 33 43 "rebelot/kanagawa.nvim", 34 44 opts = {compile = true} 35 45 },