skynet/nvim/lua/autocmd.lua

18 lines
661 B
Lua

-- recognize csx files as csharp
vim.api.nvim_command('au BufRead,BufNewFile *.csx set filetype=cs')
-- enable dadbod completion for sql files
vim.api.nvim_command("au FileType sql let b:db = exists('*DotenvGet') ? DotenvGet('DATABASE_URL') : eval('$DATABASE_URL')")
vim.api.nvim_command([[au FileType sql lua require'cmp'.setup.buffer {
sources = {
{ name = 'vim-dadbod-completion' },
{ name = 'buffer' },
}}
]])
-- word break and spelling in markdown files
vim.api.nvim_command('au BufRead,BufNewFile *.md set spell lbr')
-- hard wrap and spelling in gph files
vim.api.nvim_command('au BufRead,BufNewFile *.gph set spell tw=72 colorcolumn=+0')