Put global variable top, select which lsp install according to OS
This commit is contained in:
parent
25194213c5
commit
73b76d632b
|
@ -5,6 +5,7 @@ lsp.on_attach(function(client, bufnr)
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- Language servers
|
-- Language servers
|
||||||
|
if (MY_OS == 'Linux') 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',
|
||||||
|
@ -16,6 +17,9 @@ lsp.ensure_installed({
|
||||||
'texlab',
|
'texlab',
|
||||||
'zls'
|
'zls'
|
||||||
})
|
})
|
||||||
|
elseif (MY_OS == 'FreeBSD') then
|
||||||
|
print('On FreeBSD')
|
||||||
|
end
|
||||||
|
|
||||||
--[[
|
--[[
|
||||||
START LANGUAGE SERVERS CONFIG HERE!!!
|
START LANGUAGE SERVERS CONFIG HERE!!!
|
||||||
|
|
6
init.lua
6
init.lua
|
@ -1 +1,7 @@
|
||||||
require("eddie")
|
require("eddie")
|
||||||
|
|
||||||
|
local f = io.popen("uname -s")
|
||||||
|
if (f ~= nil) then
|
||||||
|
MY_OS = f:read("*a")
|
||||||
|
f:close()
|
||||||
|
end
|
||||||
|
|
|
@ -1,10 +1,3 @@
|
||||||
require("eddie.keymaps")
|
require("eddie.keymaps")
|
||||||
require("eddie.options")
|
require("eddie.options")
|
||||||
|
|
||||||
local f = io.popen("uname -s")
|
|
||||||
if (f ~= nil) then
|
|
||||||
MY_OS = f:read("*a")
|
|
||||||
f:close()
|
|
||||||
end
|
|
||||||
|
|
||||||
print(MY_OS)
|
|
||||||
|
|
Loading…
Reference in New Issue