blob: 5b40def861d09cfb7a5395cb181dbc5ef51dc7fd (
plain) (
tree)
|
|
return {
{
"williamboman/nvim-lsp-installer",
config = function()
local lsp_installer = require "nvim-lsp-installer"
lsp_installer.on_server_ready(function(server)
local opts = {}
if server.name == "denols" then
opts.root_dir = vim.loop.cwd
end
server:setup(opts)
vim.cmd [[ do User LspAttachBuffers ]]
end)
end,
}
-- Custom stuff
,{ "nathom/filetype.nvim" }
,{
"karb94/neoscroll.nvim",
opt = true,
config = function()
require("neoscroll").setup()
end,
-- lazy loading
setup = function()
require("core.utils").packer_lazy_load "neoscroll.nvim"
end,
}
,{
"prettier/vim-prettier",
}
,{
"editorconfig/editorconfig-vim",
}
}
|