summaryrefslogtreecommitdiff
path: root/lua/plugins/lsp.lua
blob: 9ed7bb16d84a2e1479fa3c98856cda10c279a15f (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
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",
        "docker_compose_language_service",
        "rust_analyzer",
      }
      mlsp.setup({
        ensure_installed = myServers,
        automatic_installation = false,
      })
    end,
  },
  {
    "neovim/nvim-lspconfig",
    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", "<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"})

        vim.keymap.set("n", "H", 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
      lsp["gopls"].setup({            capabilities=lspCaps, on_attach=lspMaps })
      lsp["golangci_lint_ls"].setup({ capabilities=lspCaps, on_attach=lspMaps })
      lsp["rust_analyzer"].setup({    capabilities=lspCaps, on_attach=lspMaps })
      lsp["clangd"].setup({           capabilities=lspCaps, on_attach=lspMaps })
      lsp["bashls"].setup({           capabilities=lspCaps, on_attach=lspMaps })
      lsp["graphql"].setup({          capabilities=lspCaps, on_attach=lspMaps })
      lsp["texlab"].setup({           capabilities=lspCaps, on_attach=lspMaps })
      lsp["marksman"].setup({         capabilities=lspCaps, on_attach=lspMaps })
      lsp["dockerls"].setup({         capabilities=lspCaps, on_attach=lspMaps })
      lsp["docker_compose_language_service"].setup({ capabilities=lspCaps, on_attach=lspMaps })
      -- 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 = {
              library = vim.api.nvim_get_runtime_file("", true),
            },
          }
        }
      })
    end,
  },
}