many theme changes

This commit is contained in:
Tawfeeq 2025-03-27 15:00:09 +01:00
parent 2730fd29b8
commit b9199efb56
9 changed files with 102 additions and 35 deletions

10
after/sql.lua Normal file
View file

@ -0,0 +1,10 @@
vim.api.nvim_create_autocmd('FileType', {
pattern = 'sql',
callback = function()
vim.lsp.start {
name = 'sqls',
cmd = { 'sqls', 'stdio' },
root_dir = vim.fn.getcwd(),
}
end,
})