master #1

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

View File

@@ -37,6 +37,13 @@ api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
end, end,
group = fileGrp, group = fileGrp,
}) })
api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
pattern = { 'doskey'},
callback = function()
vim.bo.filetype = 'dosini'
end,
group = fileGrp,
})
-- Read and write shada file -- Read and write shada file
api.nvim_create_autocmd({ 'FocusGained', 'FocusLost' }, { command = [[rshada | wshada]] }) api.nvim_create_autocmd({ 'FocusGained', 'FocusLost' }, { command = [[rshada | wshada]] })