OpenBSD related updates
This commit is contained in:
parent
e6a0fc287b
commit
e5fb41aaf8
|
@ -24,13 +24,12 @@ then
|
||||||
'texlab',
|
'texlab',
|
||||||
'zls'
|
'zls'
|
||||||
})
|
})
|
||||||
elseif (MY_OS == 'FreeBSD')
|
elseif (MY_OS == 'FreeBSD') or (MY_OS == 'OpenBSD')
|
||||||
then
|
then
|
||||||
lsp.ensure_installed({
|
lsp.ensure_installed({
|
||||||
-- Replace these with whatever servers you want to install
|
-- Replace these with whatever servers you want to install
|
||||||
'bashls',
|
'bashls',
|
||||||
'dockerls',
|
'dockerls',
|
||||||
'julials',
|
|
||||||
'pylsp',
|
'pylsp',
|
||||||
})
|
})
|
||||||
else
|
else
|
||||||
|
@ -68,6 +67,10 @@ lsp.on_attach(function(client, bufnr)
|
||||||
vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts, { desc = "LSP Signature Help" })
|
vim.keymap.set("i", "<C-h>", function() vim.lsp.buf.signature_help() end, opts, { desc = "LSP Signature Help" })
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
|
||||||
|
if (MY_OS == 'Linux')
|
||||||
|
then
|
||||||
|
-- Installed for Linux
|
||||||
require('lspconfig').bashls.setup({})
|
require('lspconfig').bashls.setup({})
|
||||||
|
|
||||||
require('lspconfig').clangd.setup({})
|
require('lspconfig').clangd.setup({})
|
||||||
|
@ -147,6 +150,50 @@ require('lspconfig').texlab.setup({})
|
||||||
|
|
||||||
require('lspconfig').zls.setup({})
|
require('lspconfig').zls.setup({})
|
||||||
|
|
||||||
|
elseif (MY_OS == 'FreeBSD') or (MY_OS == 'OpenBSD')
|
||||||
|
then
|
||||||
|
-- Installed for BSD
|
||||||
|
require('lspconfig').bashls.setup({})
|
||||||
|
|
||||||
|
require('lspconfig').clangd.setup({})
|
||||||
|
|
||||||
|
--local path = vim.fn.stdpath("config") .. "/after/plugin/dictionary-gb.txt"
|
||||||
|
--local words = {}
|
||||||
|
|
||||||
|
--for word in io.open(path, "r"):lines() do
|
||||||
|
-- table.insert(words, word)
|
||||||
|
--end
|
||||||
|
|
||||||
|
--require('lspconfig').ltex.setup({
|
||||||
|
-- settings = {
|
||||||
|
-- ltex = {
|
||||||
|
-- language = "en-GB",
|
||||||
|
-- dictionary = {
|
||||||
|
-- ["en-GB"] = words,
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
|
--})
|
||||||
|
|
||||||
|
-- source: https://rust-analyzer.github.io/manual.html#nvim-lsp
|
||||||
|
--require('lspconfig').rust_analyzer.setup({
|
||||||
|
-- on_attach = on_attach,
|
||||||
|
-- settings = {
|
||||||
|
-- ["rust-analyzer"] = {
|
||||||
|
-- inlayHints = {
|
||||||
|
-- closingBraceHints = true, -- Whether to show inlay hints after a closing } to indicate what item it belongs to.
|
||||||
|
-- }
|
||||||
|
-- }
|
||||||
|
-- }
|
||||||
|
--})
|
||||||
|
|
||||||
|
-- require('lspconfig').texlab.setup({})
|
||||||
|
|
||||||
|
else
|
||||||
|
print('Should never be here')
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
lsp.setup()
|
lsp.setup()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue