добавлены lsp-сервера а так же определение html файлов

This commit is contained in:
2023-02-26 23:05:20 +10:00
parent 9e43ba9054
commit 74cc3389e8
4 changed files with 60 additions and 65 deletions

5
ftdetect/html.lua Normal file
View File

@@ -0,0 +1,5 @@
-- Инициализация настроек для файлов с типом ".log"
vim.api.nvim_create_autocmd({ 'BufNewFile', 'BufRead' }, {
pattern = '*.html',
command = 'set filetype=html'
})