Auto commit: 2024-11-08 21:00:02

This commit is contained in:
Daniel Fichtinger 2024-11-08 21:00:02 -05:00
parent c51b6cc6b8
commit 9dfadaf05d
2 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,14 @@
-- Add any additional autocmds here
vim.opt_local.breakindent = true
vim.opt_local.wrap = true
vim.api.nvim_create_autocmd("FileType", {
pattern = "python",
callback = function()
local cl = require("colorbuddy")
cl.Group.new("@variable", cl.colors.primary)
cl.Group.new("@string", cl.colors.secondary)
end,
})
vim.api.nvim_create_autocmd("FileType", {
pattern = "tex",
callback = function()