fixed lspconfig with loading
This commit is contained in:
parent
3583fa3c2a
commit
7020f5e99a
5 changed files with 5 additions and 6 deletions
|
@ -1,7 +1,6 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"tpope/vim-commentary",
|
"tpope/vim-commentary",
|
||||||
event = "BufReadPost",
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"lukas-reineke/indent-blankline.nvim",
|
"lukas-reineke/indent-blankline.nvim",
|
||||||
event = "BufReadPre",
|
-- event = "BufReadPre",
|
||||||
opts = {
|
opts = {
|
||||||
-- char = "│",
|
-- char = "│",
|
||||||
filetype_exclude = { "help", "lazy" },
|
filetype_exclude = { "help", "lazy" },
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
event = "BufReadPre",
|
-- event = "BufReadPre",
|
||||||
config = function()
|
config = function()
|
||||||
|
|
||||||
local opts = { noremap = true, silent = true }
|
local opts = { noremap = true, silent = true }
|
||||||
|
@ -87,7 +87,7 @@ return {
|
||||||
|
|
||||||
{
|
{
|
||||||
"williamboman/mason-lspconfig.nvim",
|
"williamboman/mason-lspconfig.nvim",
|
||||||
event = "BufReadPre",
|
-- event = "BufReadPre",
|
||||||
config = function()
|
config = function()
|
||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"jose-elias-alvarez/null-ls.nvim",
|
"jose-elias-alvarez/null-ls.nvim",
|
||||||
event = "BufReadPost",
|
-- event = "BufReadPost",
|
||||||
opts = function()
|
opts = function()
|
||||||
local null_ls = require('null-ls')
|
local null_ls = require('null-ls')
|
||||||
return {
|
return {
|
||||||
|
|
|
@ -3,7 +3,7 @@ return {
|
||||||
"nvim-treesitter/nvim-treesitter",
|
"nvim-treesitter/nvim-treesitter",
|
||||||
version = false,
|
version = false,
|
||||||
build = ":TSUpdate",
|
build = ":TSUpdate",
|
||||||
event = "BufReadPost",
|
-- event = "BufReadPre",
|
||||||
opts = {
|
opts = {
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"c",
|
"c",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue