Changes to be committed:

modified:   .config/hypr/hyprland.conf
	modified:   .config/kitty/kitty.conf
	modified:   .config/nvim/init.lua
	modified:   .config/nvim/lua/plugins/colorscheme.lua
	new file:   .config/nvim/lua/plugins/outline.lua
	modified:   .config/nvim/lua/plugins/treesitter.lua
This commit is contained in:
2026-02-05 21:48:50 -08:00
parent 9b066c7dd8
commit fc10f8c36d
6 changed files with 55 additions and 49 deletions

View File

@@ -1,13 +1,13 @@
require("config.lazy")
-- colorscheme
vim.o.termguicolors = true
-- vim.o.termguicolors = true
vim.opt.winborder = 'rounded'
--vim.o.background = "dark" -- or "light" for light mode
vim.o.background = "dark" -- or "light" for light mode
--vim.cmd("colorscheme gruvbox ")
--vim.cmd("colorscheme retrobox")
vim.opt.clipboard = "unnamedplus" -- uses the clipboard register for all operations except yank.
-- vim.opt.clipboard = "unnamedplus" -- uses the clipboard register for all operations except yank.
vim.cmd("set nocompatible")
vim.cmd("syntax on")
@@ -34,4 +34,3 @@ vim.cmd("set complete-=i")
vim.cmd("au FileType python set fileformat=unix encoding=utf-8")
vim.cmd("au FileType markdown,tex set spell spelllang=en_us")