use kickstart-nix

This commit is contained in:
iofq 2024-08-10 01:44:12 -05:00
parent 53bfda8bcd
commit b33413dd18
36 changed files with 1291 additions and 519 deletions

19
nvim/plugin/colors.lua Normal file
View file

@ -0,0 +1,19 @@
if vim.g.did_load_colors_plugin then
return
end
vim.g.did_load_colors_plugin = true
require("rose-pine").setup({
variant = "moon",
styles = {
bold = false,
italic = false,
transparency = true,
},
})
require('nightfox').setup({
options = {
transparent = true, -- Disable setting background
terminal_colors = false, -- Set terminal colors (vim.g.terminal_color_*) used in `:terminal`
},
})