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 -- Add any additional autocmds here
vim.opt_local.breakindent = true vim.opt_local.breakindent = true
vim.opt_local.wrap = 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", { vim.api.nvim_create_autocmd("FileType", {
pattern = "tex", pattern = "tex",
callback = function() callback = function()

View file

@ -150,3 +150,6 @@ ERROR: ssh-agent environment not found, aborting push...
1 file changed, 2 insertions(+) 1 file changed, 2 insertions(+)
[main 1b65254] Auto commit: 2024-11-08 20:50:02 [main 1b65254] Auto commit: 2024-11-08 20:50:02
1 file changed, 2 insertions(+) 1 file changed, 2 insertions(+)
[main c51b6cc] Auto commit: 2024-11-08 20:55:02
2 files changed, 3 insertions(+)
create mode 100644 .config/yadm/.gitignore