Fix some checkhealth issues
This commit is contained in:
parent
d315070a8b
commit
e63ff2e483
3 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,4 @@
|
||||||
local lspconfig = require("lspconfig")
|
local lspconfig = require("lspconfig")
|
||||||
local mason_lspconfig = require("mason-lspconfig")
|
|
||||||
local cmp_nvim_lsp = require("cmp_nvim_lsp")
|
|
||||||
|
|
||||||
local keymap = vim.keymap
|
local keymap = vim.keymap
|
||||||
|
|
||||||
|
@ -123,7 +121,7 @@ end
|
||||||
|
|
||||||
-- Here it is used the LSP server attaches to file
|
-- Here it is used the LSP server attaches to file
|
||||||
vim.api.nvim_create_autocmd("LspAttach", {
|
vim.api.nvim_create_autocmd("LspAttach", {
|
||||||
-- Grouping together autocommands.
|
-- Grouping together autocommands.
|
||||||
-- Here we creating new group and calling it "UserLspConfig"
|
-- Here we creating new group and calling it "UserLspConfig"
|
||||||
group = vim.api.nvim_create_augroup("UserLspConfig", {}),
|
group = vim.api.nvim_create_augroup("UserLspConfig", {}),
|
||||||
-- callback defining logic to execute on the event
|
-- callback defining logic to execute on the event
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
require'nvim-treesitter.configs'.setup {
|
require 'nvim-treesitter.configs'.setup {
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"python",
|
"python",
|
||||||
"lua",
|
"lua",
|
||||||
|
|
3
plugin/providers.lua
Normal file
3
plugin/providers.lua
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
-- Disable unneccesary providers
|
||||||
|
vim.g.loaded_ruby_provider = 0
|
||||||
|
vim.g.loaded_perl_provider = 0
|
Loading…
Reference in a new issue