Org mode / quality of life stuff

This commit is contained in:
agryphus 2023-09-25 17:06:11 -04:00
parent 332ff948ed
commit 150e21702e
12 changed files with 238 additions and 3 deletions

View file

@ -7,7 +7,7 @@ vim.g.firenvim_config = {
priority = 0,
selector = "textarea",
takeover = "never"
}
},
}
}
@ -16,3 +16,8 @@ if vim.g.started_by_firenvim == true then
vim.opt.scrolloff = 0
end
vim.api.nvim_create_autocmd({'BufEnter'}, {
pattern = "localhost_*.txt",
command = "set filetype=python"
})