repos / dotfiles

my dotfiles

commit
ee1833b
parent
c7926ed
author
Eric Bower
date
2025-08-28 00:16:27 -0400 EDT
chore(nvim): move code around
1 files changed,  +3, -4
M dot_config/nvim/init.lua
+3, -4
 1@@ -177,7 +177,6 @@ end
 2 
 3 vim.pack.add({
 4 	"https://github.com/kyza0d/xeno.nvim",
 5-	-- "https://github.com/Mofiqul/dracula.nvim",
 6 	{ src = "https://github.com/nvim-treesitter/nvim-treesitter", version = "main" },
 7 	"https://github.com/nvim-treesitter/nvim-treesitter-context",
 8 	"https://github.com/neovim/nvim-lspconfig",
 9@@ -187,16 +186,16 @@ vim.pack.add({
10 	"https://github.com/tpope/vim-fugitive",
11 })
12 
13--- require("dracula").setup()
14 require("xeno").new_theme("xeno-dracula", {
15 	base = "#282a36",
16 	accent = "#bd93f9",
17   contrast = -0.1,
18-  -- accent = "#8be9fd",
19 })
20+vim.cmd([[colorscheme xeno-dracula]])
21 
22+-- "https://github.com/Mofiqul/dracula.nvim",
23+-- require("dracula").setup()
24 -- vim.cmd([[colorscheme dracula]])
25-vim.cmd([[colorscheme xeno-dracula]])
26 setup_treesitter()
27 setup_lsp()
28 setup_fzf()