lots of changes

- changed music command
- added music to backup
- showmethekey more window rules
- added mpv config
- added seahorse to all reqs
- nvim
    - added render markdown
    - added treesitter. ive been using just my systems treesitter.
    - fixed undotree bind
    - removed eldritch theme. it broke
This commit is contained in:
2025-07-19 14:39:56 -05:00
parent 63cfe97908
commit 143696c0a9
10 changed files with 71 additions and 31 deletions

View File

@@ -0,0 +1,7 @@
local ok, treesitter = pcall(require, 'nvim-treesitter.configs')
if ok then
treesitter.setup {
ensure_installed = { "c", "lua", "rust", "css", "html", "bash", "markdown", "markdown_inline" },
highlight = { enable = true, },
}
end