mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00
set the file type to css for .tcss
This commit is contained in:
parent
8f01d5a3bc
commit
f420ca6918
1 changed files with 8 additions and 0 deletions
|
@ -91,6 +91,14 @@ vim.api.nvim_create_autocmd({"BufEnter", "BufWinEnter"}, {
|
|||
end,
|
||||
})
|
||||
|
||||
-- autocommand to set the file type to css for tcss
|
||||
vim.api.nvim_create_autocmd({"BufEnter", "BufWinEnter"}, {
|
||||
pattern = {"*.tcss"},
|
||||
callback = function()
|
||||
vim.cmd("set filetype=css")
|
||||
end,
|
||||
})
|
||||
|
||||
require('user.tree-sitter')
|
||||
|
||||
-- folding and indentation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue