More work, LSP is not working yet need to figure that out more
This commit is contained in:
parent
713d128018
commit
764b890c58
32 changed files with 290 additions and 441 deletions
7
lua/plugins_disabled/autoswap.lua
Normal file
7
lua/plugins_disabled/autoswap.lua
Normal file
|
@ -0,0 +1,7 @@
|
|||
-- Disabled this because of undotree, turniung off swap files entirely, adding in undo tree history instead
|
||||
|
||||
return {
|
||||
"gioele/vim-autoswap",
|
||||
commit = "e587e4b14a605d8921942ba65a37583813289272",
|
||||
event = "BufEnter",
|
||||
}
|
115
lua/plugins_disabled/ide_lsp_mason.lua
Normal file
115
lua/plugins_disabled/ide_lsp_mason.lua
Normal file
|
@ -0,0 +1,115 @@
|
|||
-- npm install -g cspell@latest
|
||||
|
||||
local output = vim.fn.system {
|
||||
"which",
|
||||
"cspell",
|
||||
}
|
||||
if output == nil or output == "" then
|
||||
-- if v:shell_error != 0 then
|
||||
vim.fn.system {
|
||||
"npm",
|
||||
"install",
|
||||
"-g",
|
||||
"cspell@latest",
|
||||
}
|
||||
end
|
||||
|
||||
return {
|
||||
{
|
||||
-- universal JSON schema store, where schemas for popular JSON documents can be found.
|
||||
"b0o/SchemaStore.nvim",
|
||||
commit = "15f37630d3abfb98607dd8e4625b731a8558b96d",
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
commit = "1c13e529bd5683b54a39b633a560d2f00fcb25af",
|
||||
dependencies = {
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
}
|
||||
},
|
||||
-- NULL LS
|
||||
{
|
||||
"jose-elias-alvarez/null-ls.nvim",
|
||||
commit = "77e53bc3bac34cc273be8ed9eb9ab78bcf67fa48",
|
||||
opts = function(_, config)
|
||||
-- config variable is the default definitions table for the setup function call
|
||||
local null_ls = require "null-ls"
|
||||
|
||||
-- Check supported formatters and linters
|
||||
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting
|
||||
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
|
||||
config.sources = {
|
||||
-- Set a formatter
|
||||
null_ls.builtins.formatting.stylua,
|
||||
null_ls.builtins.formatting.prettier,
|
||||
null_ls.builtins.formatting.rustfmt,
|
||||
-- null_ls.builtins.code_actions.proselint, -- TODO looks interesting
|
||||
null_ls.builtins.code_actions.cspell.with {
|
||||
config = {
|
||||
find_json = function() return vim.fn.findfile("cspell.json", vim.fn.environ().HOME .. "/.config/nvim/lua/user/;") end,
|
||||
},
|
||||
},
|
||||
null_ls.builtins.diagnostics.cspell.with {
|
||||
extra_args = { "--config", "~/.config/nvim/lua/user/cspell.json" },
|
||||
},
|
||||
}
|
||||
|
||||
config.update_in_insert = true
|
||||
|
||||
return config -- return final config table
|
||||
end,
|
||||
},
|
||||
-- MASON
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
build = ":MasonUpdate", -- :MasonUpdate updates registry contents
|
||||
commit = "08b2fd308e0107eab9f0b59d570b69089fd0b522",
|
||||
cmd = {
|
||||
"Mason",
|
||||
"MasonInstall",
|
||||
"MasonUninstall",
|
||||
"MasonUninstallAll",
|
||||
"MasonLog",
|
||||
},
|
||||
opts = {}
|
||||
},
|
||||
{
|
||||
"williamboman/mason-lspconfig.nvim",
|
||||
dependencies = {
|
||||
"williamboman/mason.nvim",
|
||||
},
|
||||
commit = "c55d18f3947562e699d34d89681edbf9f0e250d3",
|
||||
cmd = { "LspInstall", "LspUninstall" },
|
||||
opts = {
|
||||
ensure_installed = { "lua_ls", "rust_analyzer", "tsserver", "pyright", "cssls", "cssmodules_ls" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"jay-babu/mason-null-ls.nvim",
|
||||
commit = "54d702020bf94e4eefd357f0b738317af30217eb",
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
dependencies = {
|
||||
"williamboman/mason.nvim",
|
||||
"jose-elias-alvarez/null-ls.nvim",
|
||||
},
|
||||
opts = {
|
||||
ensure_installed = { "prettier", "stylua", "black", "rust_fmt" },
|
||||
},
|
||||
},
|
||||
{
|
||||
"jay-babu/mason-nvim-dap.nvim",
|
||||
commit = "c836e511e796d2b6a25ad9f164f5b25d8b9ff705",
|
||||
dependencies = {
|
||||
"williamboman/mason.nvim",
|
||||
"mfussenegger/nvim-dap",
|
||||
},
|
||||
opts = {
|
||||
ensure_installed = { "codelldb" },
|
||||
},
|
||||
},
|
||||
mappings = {
|
||||
n = {
|
||||
["<leader>l"] = { desc = " LSP" },
|
||||
}
|
||||
}
|
||||
}
|
9
lua/plugins_disabled/layout-msg-popups_noice.lua
Normal file
9
lua/plugins_disabled/layout-msg-popups_noice.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
return {
|
||||
"folke/noice.nvim",
|
||||
commit = "f5178da0097e964b37951a0ebc078fdcc14280f3",
|
||||
dependencies = {
|
||||
"MunifTanjim/nui.nvim",
|
||||
"rcarriga/nvim-notify",
|
||||
},
|
||||
event = "VeryLazy"
|
||||
}
|
6
lua/plugins_disabled/rust-tools.lua
Normal file
6
lua/plugins_disabled/rust-tools.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"simrat39/rust-tools.nvim",
|
||||
commit = "71d2cf67b5ed120a0e31b2c8adb210dd2834242f",
|
||||
event = "BufEnter *.rs",
|
||||
after = { "mason-lspconfig.nvim", "inlay-hints." },
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue