chore(nvim): plugin changes, new keymaps, augroup

This commit is contained in:
2024-11-28 02:50:07 +02:00
parent 823cdbc07f
commit 6b056f6072
5 changed files with 42 additions and 14 deletions

View File

@@ -68,4 +68,10 @@ vim.api.nvim_create_autocmd({ 'FileType' }, {
callback = function() vim.opt_local.conceallevel = 0 end,
})
vim.api.nvim_create_autocmd({ 'BufRead', 'BufNewFile' }, {
desc = 'Set filetype for SSH config directory',
pattern = '*/?.ssh/{config|shared}.d/*',
command = 'set filetype=sshconfig',
})
-- vim: ts=2 sts=2 sw=2 et