repos / dotfiles

my dotfiles

commit
6dc607e
parent
6d08fc1
author
Eric Bower
date
2025-08-27 23:52:16 -0400 EDT
refactor(nvim): use minimal color scheme
2 files changed,  +13, -3
M .gitignore
+1, -0
1@@ -1,2 +1,3 @@
2 *DS_Store
3 *.swp
4+.aider*
M dot_config/nvim/init.lua
+12, -3
 1@@ -176,7 +176,8 @@ local function setup_treesitter()
 2 end
 3 
 4 vim.pack.add({
 5-	"https://github.com/Mofiqul/dracula.nvim",
 6+	"https://github.com/kyza0d/xeno.nvim",
 7+	-- "https://github.com/Mofiqul/dracula.nvim",
 8 	{ src = "https://github.com/nvim-treesitter/nvim-treesitter", version = "main" },
 9 	"https://github.com/nvim-treesitter/nvim-treesitter-context",
10 	"https://github.com/neovim/nvim-lspconfig",
11@@ -186,8 +187,16 @@ vim.pack.add({
12 	"https://github.com/tpope/vim-fugitive",
13 })
14 
15-require("dracula").setup()
16-vim.cmd([[colorscheme dracula]])
17+-- require("dracula").setup()
18+require("xeno").new_theme("xeno-dracula", {
19+	base = "#282a36",
20+	accent = "#bd93f9",
21+  contrast = -0.1,
22+  -- accent = "#8be9fd",
23+})
24+
25+-- vim.cmd([[colorscheme dracula]])
26+vim.cmd([[colorscheme xeno-dracula]])
27 setup_treesitter()
28 setup_lsp()
29 setup_fzf()