mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
- Added the basic setting for functional LSP. - Split configurations into multiple files suitable for Lazy usage.
74 lines
3.1 KiB
Lua
74 lines
3.1 KiB
Lua
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
local tree_config = require("nvim-treesitter.configs")
|
|
tree_config.setup({
|
|
ensure_installed = { "lua", "vim", "vimdoc", "bash", "c_sharp", "css", "dockerfile", "git_config", "gitignore", "html", "http", "ini", "json", "proto", "python", "rust", "sql", "toml", "tsx", "typescript" , "javascript" },
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
end
|
|
},
|
|
|
|
-- LSP Configuration
|
|
{
|
|
-- Provides :Mason command which installs Language Servers
|
|
"williamboman/mason.nvim",
|
|
config = function()
|
|
require("mason").setup()
|
|
end
|
|
},
|
|
{
|
|
-- Helps to auto install Language Servers by specifying them
|
|
"williamboman/mason-lspconfig.nvim",
|
|
config = function()
|
|
require("mason-lspconfig").setup({
|
|
ensure_installed = { "lua_ls", "bashls", "cssls", "dockerls", "emmet_ls", "jsonls", "tsserver", "marksman", "pyre", "rust_analyzer", "sqlls", "taplo" }
|
|
})
|
|
end
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
config = function()
|
|
-- Hook up NVIM with the above installed Language Servers
|
|
local lspconfig = require("lspconfig")
|
|
lspconfig.lua_ls.setup({})
|
|
lspconfig.bashls.setup({})
|
|
lspconfig.cssls.setup({})
|
|
lspconfig.dockerls.setup({})
|
|
lspconfig.emmet_ls.setup({})
|
|
lspconfig.jsonls.setup({})
|
|
lspconfig.tsserver.setup({})
|
|
lspconfig.marksman.setup({})
|
|
lspconfig.pyre.setup({})
|
|
lspconfig.rust_analyzer.setup({})
|
|
lspconfig.sqlls.setup({})
|
|
lspconfig.taplo.setup({})
|
|
|
|
-- LSP Keybindings
|
|
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev)
|
|
vim.keymap.set('n', ']d', vim.diagnostic.goto_next)
|
|
vim.keymap.set({ 'n', 'v' }, '<leader>ca', vim.lsp.buf.code_action, {})
|
|
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist)
|
|
vim.keymap.set('n', 'gD', vim.lsp.buf.declaration, {})
|
|
vim.keymap.set('n', 'gd', vim.lsp.buf.definition, {})
|
|
vim.keymap.set('n', 'K', vim.lsp.buf.hover, {})
|
|
vim.keymap.set('n', 'gi', vim.lsp.buf.implementation, {})
|
|
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, {})
|
|
vim.keymap.set('n', '<leader>wa', vim.lsp.buf.add_workspace_folder, {})
|
|
vim.keymap.set('n', '<leader>wr', vim.lsp.buf.remove_workspace_folder, {})
|
|
vim.keymap.set('n', '<leader>wl', function()
|
|
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
|
|
end, {})
|
|
vim.keymap.set('n', '<leader>D', vim.lsp.buf.type_definition, {})
|
|
vim.keymap.set('n', '<leader>rn', vim.lsp.buf.rename, {})
|
|
vim.keymap.set('n', 'gr', vim.lsp.buf.references, {})
|
|
vim.keymap.set('n', '<leader>f', function()
|
|
vim.lsp.buf.format { async = true }
|
|
end, {})
|
|
end
|
|
}
|
|
}
|