mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-17 16:21:12 +02:00
many theme changes
This commit is contained in:
parent
2730fd29b8
commit
b9199efb56
9 changed files with 102 additions and 35 deletions
10
after/sql.lua
Normal file
10
after/sql.lua
Normal 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,
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue