deno fix
This commit is contained in:
parent
8baae5ecf3
commit
823e094857
9
init.lua
9
init.lua
|
@ -109,8 +109,8 @@ vim.api.nvim_create_autocmd('TermOpen', {
|
||||||
desc = 'Custom terminal settings',
|
desc = 'Custom terminal settings',
|
||||||
group = vim.api.nvim_create_augroup('term-custom', { clear = true }),
|
group = vim.api.nvim_create_augroup('term-custom', { clear = true }),
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.opt.number = false
|
vim.opt_local.number = false
|
||||||
vim.opt.relativenumber = false
|
vim.opt_local.relativenumber = false
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -550,6 +550,11 @@ require('lazy').setup({
|
||||||
-- But for many setups, the LSP (`ts_ls`) will work just fine
|
-- But for many setups, the LSP (`ts_ls`) will work just fine
|
||||||
-- ts_ls = {},
|
-- ts_ls = {},
|
||||||
--
|
--
|
||||||
|
denols = {
|
||||||
|
root_dir = require('lspconfig').util.root_pattern { 'deno.json', 'deno.jsonc' },
|
||||||
|
single_file_support = false,
|
||||||
|
settings = {},
|
||||||
|
},
|
||||||
|
|
||||||
lua_ls = {
|
lua_ls = {
|
||||||
-- cmd = {...},
|
-- cmd = {...},
|
||||||
|
|
Loading…
Reference in New Issue