changed theme, added C-6 mapping, need to figure out how to load deno or node depending on project
This commit is contained in:
1 parent
aa809c71e6
commit
8456e321a9
5 files changed
+38
-29
No files matched your search
+13
-5
@@ -25,10 +25,10 @@ local config = function()
|
||||
vim.g.markdown_fenced_languages = {
|
||||
"ts=typescript"
|
||||
}
|
||||
require("lspconfig").denols.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
}
|
||||
--require("lspconfig").denols.setup {
|
||||
-- on_attach = on_attach,
|
||||
-- capabilities = capabilities,
|
||||
--}
|
||||
require("lspconfig").clangd.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities,
|
||||
@@ -45,6 +45,14 @@ local config = function()
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities
|
||||
}
|
||||
require("lspconfig").angularls.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities
|
||||
}
|
||||
require("lspconfig").tsserver.setup {
|
||||
on_attach = on_attach,
|
||||
capabilities = capabilities
|
||||
}
|
||||
end
|
||||
|
||||
local rs_config = function()
|
||||
@@ -70,7 +78,7 @@ return {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"mfussenegger/nvim-dap",
|
||||
},
|
||||
rs_config = rs_config
|
||||
config = rs_config
|
||||
},
|
||||
{
|
||||
"windwp/nvim-autopairs",
|
||||
|
||||
Reference in new issue
Block a user