go.nvim/playground/init.lua

63 lines
1.6 KiB
Lua
Raw Normal View History

2022-03-23 02:27:58 +00:00
vim.cmd([[set runtimepath=$VIMRUNTIME]])
vim.cmd([[set packpath=/tmp/nvim/site]])
local package_root = "/tmp/nvim/site/pack"
local install_path = package_root .. "/packer/start/packer.nvim"
2022-04-30 02:38:24 +00:00
local plugin_folder = function()
local host = os.getenv("HOST_NAME")
if host and (host:find("Ray") or host:find("ray")) then
return [[~/github/]] -- vim.fn.expand("$HOME") .. '/github/'
else
return ""
end
end
2022-03-23 02:27:58 +00:00
local function load_plugins()
require("packer").startup({
function(use)
use({ "wbthomason/packer.nvim" })
use({ "ray-x/guihua.lua" })
use({
"nvim-treesitter/nvim-treesitter",
config = function()
require("nvim-treesitter.configs").setup({
2022-04-30 02:38:24 +00:00
ensure_installed = { "go" },
2022-03-23 02:27:58 +00:00
highlight = { enable = true },
})
end,
run = ":TSUpdate",
})
use({ "neovim/nvim-lspconfig" })
use({
2022-04-30 02:38:24 +00:00
plugin_folder() .. "ray-x/go.nvim",
2022-03-23 02:27:58 +00:00
config = function()
require("go").setup({
2022-04-30 02:38:24 +00:00
verbose = true,
goimport = "gopls",
lsp_cfg = true, -- false: do nothing
2022-03-23 02:27:58 +00:00
run_in_floaterm = true,
})
end,
})
end,
config = {
package_root = package_root,
compile_path = install_path .. "/plugin/packer_compiled.lua",
},
})
end
if vim.fn.isdirectory(install_path) == 0 then
vim.fn.system({
"git",
"clone",
"https://github.com/wbthomason/packer.nvim",
install_path,
})
load_plugins()
require("packer").sync()
else
load_plugins()
end
vim.cmd("colorscheme murphy")