chore: updated neovim config 4964acc8
Steve · 2025-08-31 21:34 3 file(s) · +4 −4
nvim/lazy-lock.json +1 −1
1 1
{
2 -
  "ansi-nvim": { "branch": "main", "commit": "8d0078f63d161de882bca21a505f84ee442fa194" },
2 +
  "darkmatter-nvim": { "branch": "main", "commit": "5663ddc9d8580c0c43b996e01bfe1a335789e9c9" },
3 3
  "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
4 4
  "mini.nvim": { "branch": "main", "commit": "94cae4660a8b2d95dbbd56e1fbc6fcfa2716d152" },
5 5
  "nvim-treesitter": { "branch": "master", "commit": "42fc28ba918343ebfd5565147a42a26580579482" },
nvim/lua/config/options.lua +1 −1
42 42
opt.splitkeep = "screen"
43 43
opt.splitright = true      -- Put new windows right of current
44 44
opt.tabstop = 2            -- Number of spaces tabs count for
45 -
opt.termguicolors = false   -- True color support
45 +
opt.termguicolors = true   -- True color support
46 46
opt.timeoutlen = 300
47 47
opt.undofile = true
48 48
opt.undolevels = 10000
nvim/lua/plugins/colorschemes.lua +2 −2
1 1
return {
2 -
	"stevedylandev/ansi-nvim",
2 +
	"stevedylandev/darkmatter-nvim",
3 3
	lazy = false,
4 4
	priority = 1000,
5 5
	config = function()
6 -
		vim.cmd.colorscheme "ansi"
6 +
		vim.cmd.colorscheme "darkmatter"
7 7
	end,
8 8
}