- 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
8 lines
254 B
Lua
8 lines
254 B
Lua
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
|