summaryrefslogtreecommitdiff
path: root/lua/plugins/lsp.lua
blob: d0b3712c54e451a9c4f5cb65f3bd657d0c9f8e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
return {
  {
    "williamboman/mason.nvim",
    dependencies = {
      "williamboman/mason-lspconfig.nvim",
    },
    config = function()
      local mason = require('mason')
      local mlsp = require('mason-lspconfig')
      mason.setup({
        ui = {
          icons = {
            package_installed = "",
            package_not_installed = "",
            package_pending = "",
          }
        }
      })
      -- Global so it can be used by both mason and lspconfig ;)
      local myServers = {
        "gopls",
        "golangci_lint_ls",
        "lua_ls",
        "bashls",
        "graphql",
        "texlab",
        "clangd",
        "marksman",
        "dockerls",
        "ruff_lsp",
        "docker_compose_language_service",
        "rust_analyzer",
      }
      mlsp.setup({
        ensure_installed = myServers,
        automatic_installation = false,
      })
    end,
  },
  {
    "neovim/nvim-lspconfig",
    veryLazy = true,
    dependencies = {
      "hrsh7th/nvim-cmp",
      "hrsh7th/cmp-nvim-lsp",
      "nvim-telescope/telescope.nvim",
    },
    config = function()

      -- Use icons in the sidebar
      local signs = { Error="", Warn ="", Hint ="󰈈", Info ="" }
      for type, icon in pairs(signs) do
        local hl = "DiagnosticSign" .. type
        vim.fn.sign_define(hl, {text = icon, texthl = hl, numhl = ""})
      end
      -- Hide inline virtual text and use only the icons for debbuging/tips
      vim.diagnostic.config({
        virtual_text = false,
        signs = true,
        underline = true
      })

      local lsp = require('lspconfig')
      local lspCaps = require('cmp_nvim_lsp').default_capabilities()
      local lspMaps = function()

        vim.keymap.set("n", "K", vim.lsp.buf.hover, {buffer=0,
          desc = "Show object description on hover"})

        vim.keymap.set("n", "<leader>r",  vim.lsp.buf.rename, {buffer=0,
          desc = "Rename object across all occurences"})

        vim.keymap.set("n", "gd", vim.lsp.buf.definition, {buffer=0,
          desc = "Go to the location where the object is defined"})

        vim.keymap.set("n", "gt", vim.lsp.buf.type_definition, {buffer=0,
          desc = "Go to the definition of the objects type"})

        vim.keymap.set("n", "gi", vim.lsp.buf.implementation, {buffer=0,
					desc = "Go to the method implementation"})

        vim.keymap.set("n", "gr", vim.lsp.buf.references, {buffer=0,
					desc = "Go to references of the object"})

        vim.keymap.set("n", "<leader>fa", vim.lsp.buf.code_action, {buffer=0,
					desc = ""})
        vim.keymap.set("n", "]d", vim.diagnostic.goto_next, {buffer=0,
					desc = "Go to the next diagnostic/issue"})

        vim.keymap.set("n", "[d", vim.diagnostic.goto_prev, {buffer=0,
					desc = "Go to the previous diagnostic/issue"})

        -- S is the same as cc, I'd rather use it for something more useful
        vim.keymap.set("n", "S", vim.diagnostic.open_float, {buffer=0,
					desc = "View diagnostics information in a floating window"})

      end

      -- Configure every lsp installed and managed by mason
      -- TODO: automate this with a global myServers table
      local myServers = {
        "gopls",
        "golangci_lint_ls",
        "lua_ls",
        "bashls",
        "dockerls",
        "docker_compose_language_service",
        "graphql",
        "texlab",
        "ruff_lsp",
        "clangd",
        "marksman",
      }
      for _, server in ipairs(myServers) do
        lsp[server].setup({
          capabilities = lspCaps,
          on_attach = lspMaps
        })
      end

      -- Non standard language settings:
      lsp.lua_ls.setup({
        capabilities = lspCaps,
        on_attach = lspMaps,
        settings = {
          Lua = {
            runtime = {
              -- Tell the language server which version of Lua you're using
              -- -- (most likely LuaJIT in the case of Neovim)
              version = 'LuaJIT'
            },
            diagnostic = {
              -- Get the language server to recognize the `vim` global
              globals = {
                'vim',
                'require'
              }
            },
            workspace = {
              checkThirdParty = false,
              library = vim.api.nvim_get_runtime_file("", true),
            },
            telemetry = {
              enable = false
            }
          }
        }
      })
    end,
  },
}