refactor(nvim): retrigger Filetype for orgmode, do not edit

This commit is contained in:
Price Hiller 2024-01-24 16:01:26 -06:00
parent 447644c128
commit 6be1be3154
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8

View File

@ -66,7 +66,7 @@ return {
vim.api.nvim_set_hl(0, "org_underline_delimiter", { link = "@punctuation.delimiter" })
vim.api.nvim_set_hl(0, "org_strikethrough_delimiter", { link = "@punctuation.delimiter" })
if vim.bo.filetype == "org" then
vim.cmd.edit()
vim.cmd.doautocmd("FileType org")
end
end,
},