neovim-confs/lua/custom/autocmds.lua

82 lines
1.7 KiB
Lua
Raw Normal View History

2024-07-08 10:32:51 +02:00
local augroup = vim.api.nvim_create_augroup('plex_generic_autocmds', {})
2024-07-09 01:25:42 +02:00
-- enable text wrapping for text filetypes
vim.api.nvim_create_autocmd('FileType', {
group = augroup,
pattern = {
'tex',
'text',
'markdown',
'help',
2024-07-19 11:09:09 +02:00
'typst',
2024-07-09 01:25:42 +02:00
},
callback = function()
vim.opt_local.wrap = true
end,
})
2024-07-08 10:32:51 +02:00
-- always use the tex filetype for latex things, as those are most supported by
-- latex language servers.
vim.api.nvim_create_autocmd('FileType', {
group = augroup,
pattern = {
'latex',
'plaintex',
},
callback = function()
vim.bo.filetype = 'tex'
end,
})
-- conceallevel is what converts things like **bold** to be displayed as bold
-- without the stars. This is useful, but we might not want it for some
-- filetypes.
vim.api.nvim_create_autocmd('FileType', {
group = augroup,
pattern = {
'latex',
2024-07-15 09:47:40 +02:00
'markdown',
2024-07-08 10:32:51 +02:00
'plaintex',
'tex',
2024-07-19 11:09:09 +02:00
'typst',
2024-07-08 10:32:51 +02:00
},
callback = function()
vim.opt_local.conceallevel = 0
2024-07-09 01:51:49 +02:00
vim.opt_local.concealcursor = ''
2024-07-08 10:32:51 +02:00
end,
})
-- Enable spellcheck for some types
vim.api.nvim_create_autocmd('FileType', {
group = augroup,
pattern = {
'latex',
'markdown',
2024-07-19 11:09:09 +02:00
'typst',
'plaintex',
'tex',
},
callback = function()
vim.cmd [[set spell]]
end,
})
-- disable auto formatting for some filetypes
vim.api.nvim_create_autocmd('FileType', {
group = augroup,
pattern = {
'TelescopePrompt',
},
callback = function()
vim.opt_local.formatoptions = ''
end,
})
2024-07-10 17:06:49 +02:00
-- tweak colorschemes and highlights after loading a new colorscheme
vim.api.nvim_create_autocmd('ColorScheme', {
group = augroup,
callback = function()
vim.cmd [[highlight Comment gui=NONE]] -- no italics for comments
end,
})