master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit c6bdb676aa - Show all commits

View File

@@ -44,6 +44,13 @@ api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
end, end,
group = fileGrp, group = fileGrp,
}) })
api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
pattern = { '.clangd', '.clang-tidy'},
callback = function()
vim.bo.filetype = 'yaml'
end,
group = fileGrp,
})
-- Read and write shada file -- Read and write shada file
api.nvim_create_autocmd({ 'FocusLost' }, { command = [[wshada]] }) api.nvim_create_autocmd({ 'FocusLost' }, { command = [[wshada]] })