123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- local on_windows = vim.loop.os_uname().version:match "Windows"
- local function join_paths(...)
- local path_sep = on_windows and "\\" or "/"
- local result = table.concat({ ... }, path_sep)
- return result
- end
- vim.cmd [[set runtimepath=$VIMRUNTIME]]
- local temp_dir = vim.loop.os_getenv "TEMP" or "/tmp"
- vim.cmd("set packpath=" .. join_paths(temp_dir, "nvim", "site"))
- local package_root = join_paths(temp_dir, "nvim", "site", "pack")
- local plugins_dir = join_paths(package_root, "lazy", "opt")
- local install_path = join_paths(package_root, "lazy.nvim")
- -- Choose whether to use the executable that's managed by mason
- local use_lsp_installer = true
- local function load_plugins()
- vim.opt.rtp:prepend(install_path)
- require("lazy").setup({
- "neovim/nvim-lspconfig",
- "williamboman/mason-lspconfig.nvim",
- "williamboman/mason.nvim",
- }, {
- root = plugins_dir,
- })
- end
- function _G.dump(...)
- local objects = vim.tbl_map(vim.inspect, { ... })
- print(unpack(objects))
- return ...
- end
- _G.load_config = function()
- vim.lsp.set_log_level "trace"
- require("vim.lsp.log").set_format_func(vim.inspect)
- local nvim_lsp = require "lspconfig"
- local on_attach = function(_, bufnr)
- local function buf_set_option(k, v)
- vim.api.nvim_set_option_value(k, v, { buf = bufnr })
- end
- buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
- -- Mappings.
- local opts = { buffer = bufnr, noremap = true, silent = true }
- vim.keymap.set("n", "gD", vim.lsp.buf.declaration, opts)
- vim.keymap.set("n", "gd", vim.lsp.buf.definition, opts)
- vim.keymap.set("n", "K", vim.lsp.buf.hover, opts)
- vim.keymap.set("n", "gi", vim.lsp.buf.implementation, opts)
- vim.keymap.set("n", "<C-k>", vim.lsp.buf.signature_help, opts)
- vim.keymap.set("n", "<space>wa", vim.lsp.buf.add_workspace_folder, opts)
- vim.keymap.set("n", "<space>wr", vim.lsp.buf.remove_workspace_folder, opts)
- vim.keymap.set("n", "<space>wl", function()
- print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
- end, opts)
- vim.keymap.set("n", "<space>lD", vim.lsp.buf.type_definition, opts)
- vim.keymap.set("n", "<space>lr", vim.lsp.buf.rename, opts)
- vim.keymap.set("n", "gr", vim.lsp.buf.references, opts)
- vim.keymap.set("n", "gl", vim.diagnostic.open_float, opts)
- vim.keymap.set("n", "[d", vim.diagnostic.goto_prev, opts)
- vim.keymap.set("n", "]d", vim.diagnostic.goto_next, opts)
- vim.keymap.set("n", "<space>q", vim.diagnostic.setloclist, opts)
- vim.keymap.set("n", "<space>li", "<cmd>LspInfo<CR>", opts)
- vim.keymap.set("n", "<space>lI", "<cmd>Mason<CR>", opts)
- end
- -- Add the server that troubles you here, e.g. "clangd", "pyright", "tsserver"
- local name = "lua_ls"
- local setup_opts = {
- on_attach = on_attach,
- }
- if not name then
- print "You have not defined a server name, please edit minimal_init.lua"
- end
- if not nvim_lsp[name].document_config.default_config.cmd and not setup_opts.cmd then
- print [[You have not defined a server default cmd for a server
- that requires it please edit minimal_init.lua]]
- end
- nvim_lsp[name].setup(setup_opts)
- if use_lsp_installer then
- require("mason-lspconfig").setup { automatic_installation = true }
- end
- print [[You can find your log at $HOME/.cache/nvim/lsp.log. Please paste in a github issue under a details tag as described in the issue template.]]
- end
- if vim.fn.isdirectory(install_path) == 0 then
- print "Installing lazy.nvim"
- vim.fn.system {
- "git",
- "clone",
- "--filter=blob:none",
- "--single-branch",
- "https://github.com/folke/lazy.nvim.git",
- install_path,
- }
- load_plugins()
- vim.cmd [[autocmd User LazyDone ++once lua load_config()]]
- else
- load_plugins()
- require("lazy").sync()
- _G.load_config()
- end
|