i think i disabled most things
This commit is contained in:
parent
e7da25d583
commit
fc3551f2b0
|
@ -1,23 +0,0 @@
|
||||||
local on_attach = require("plugins.configs.lspconfig").on_attach
|
|
||||||
local capabilities = require("plugins.configs.lspconfig").capabilities
|
|
||||||
|
|
||||||
local lspconfig = require "lspconfig"
|
|
||||||
|
|
||||||
-- if you just want default config for the servers then put them in a table
|
|
||||||
local servers = {
|
|
||||||
"html",
|
|
||||||
"cssls",
|
|
||||||
"tsserver",
|
|
||||||
"clangd",
|
|
||||||
"pyright",
|
|
||||||
"rust_analyzer",
|
|
||||||
"bashls",
|
|
||||||
"cmake",
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, lsp in ipairs(servers) do
|
|
||||||
lspconfig[lsp].setup {
|
|
||||||
on_attach = on_attach,
|
|
||||||
capabilities = capabilities,
|
|
||||||
}
|
|
||||||
end
|
|
|
@ -202,6 +202,7 @@ local plugins = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"folke/todo-comments.nvim",
|
"folke/todo-comments.nvim",
|
||||||
|
enable = false,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
dependencies = "nvim-telescope/telescope.nvim",
|
dependencies = "nvim-telescope/telescope.nvim",
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
|
@ -319,7 +320,7 @@ local plugins = {
|
||||||
-- lazy.nvim
|
-- lazy.nvim
|
||||||
{
|
{
|
||||||
"folke/noice.nvim",
|
"folke/noice.nvim",
|
||||||
enabled = not vim.g.started_by_firenvim,
|
enabled = false,
|
||||||
event = "VeryLazy",
|
event = "VeryLazy",
|
||||||
-- config.lsp.signature.enabled = false
|
-- config.lsp.signature.enabled = false
|
||||||
dependencies = {
|
dependencies = {
|
||||||
|
@ -382,6 +383,7 @@ local plugins = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"chentoast/marks.nvim",
|
"chentoast/marks.nvim",
|
||||||
|
enabled = false,
|
||||||
lazy = false,
|
lazy = false,
|
||||||
dependencies = "lewis6991/gitsigns.nvim",
|
dependencies = "lewis6991/gitsigns.nvim",
|
||||||
event = "FileType",
|
event = "FileType",
|
||||||
|
@ -512,6 +514,7 @@ local plugins = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"kevinhwang91/nvim-ufo",
|
"kevinhwang91/nvim-ufo",
|
||||||
|
enabled = false,
|
||||||
event = { "BufReadPost", "BufNewFile" },
|
event = { "BufReadPost", "BufNewFile" },
|
||||||
-- stylua: ignore
|
-- stylua: ignore
|
||||||
keys = {
|
keys = {
|
||||||
|
|
Loading…
Reference in New Issue