tangled
alpha
login
or
join now
boltless.me
/
nvim_rocks
0
fork
atom
neovim configuration using rocks.nvim plugin manager
0
fork
atom
overview
issues
pulls
pipelines
fix(autocmds): ignore `htmldjango`
Seongmin Lee
1 year ago
b7f762f7
950d9638
+9
1 changed file
expand all
collapse all
unified
split
lua
core
autocmds.lua
+9
lua/core/autocmds.lua
···
106
106
end,
107
107
})
108
108
109
109
+
-- HACK: ignore htmldjango
110
110
+
au("FileType", {
111
111
+
group = ftplugins,
112
112
+
pattern = "htmldjango",
113
113
+
callback = function (ev)
114
114
+
vim.bo[ev.buf].filetype = "html"
115
115
+
end
116
116
+
})
117
117
+
109
118
au("CmdlineEnter", {
110
119
group = aug("auto_hlsearch"),
111
120
callback = vim.schedule_wrap(function()