Nvim + tmux wrong color fixes
parent
17715e6d61
commit
095ad31813
|
@ -22,3 +22,5 @@ lspconfig.gopls.setup{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return lspconfig
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
local none_ls = require("none-ls")
|
local none_ls = require("null-ls")
|
||||||
local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
|
local augroup = vim.api.nvim_create_augroup("LspFormatting", {})
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ local opts = {
|
||||||
group = augroup,
|
group = augroup,
|
||||||
buffer= bufnr,
|
buffer= bufnr,
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.lsp.buf.form({ bufnr = bufnr})
|
vim.lsp.buf.format({bufnr=bufnr})
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,7 +3,7 @@ local M = {}
|
||||||
M.gopher = {
|
M.gopher = {
|
||||||
plugins = true,
|
plugins = true,
|
||||||
n = {
|
n = {
|
||||||
["<leader>gsj"] = {
|
["<leader>gtj"] = {
|
||||||
"<cmd> GoTagAdd json <CR>",
|
"<cmd> GoTagAdd json <CR>",
|
||||||
"Add json tag to struct"
|
"Add json tag to struct"
|
||||||
},
|
},
|
||||||
|
|
|
@ -22,6 +22,18 @@ local plugins = {
|
||||||
return require "custom.configs.none-ls"
|
return require "custom.configs.none-ls"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"ray-x/go.nvim",
|
||||||
|
config = function()
|
||||||
|
require("go").setup()
|
||||||
|
require("core.utils").load_mappings("gopher")
|
||||||
|
end,
|
||||||
|
event = {"CmdlineEnter"},
|
||||||
|
ft = {"go", 'gomod'},
|
||||||
|
build = ':lua require("go.install").update_all_sync()' -- if you need to install/update all binaries
|
||||||
|
},
|
||||||
|
|
||||||
|
--[[
|
||||||
{
|
{
|
||||||
"olexsmir/gopher.nvim",
|
"olexsmir/gopher.nvim",
|
||||||
ft = "go",
|
ft = "go",
|
||||||
|
@ -31,7 +43,8 @@ local plugins = {
|
||||||
end,
|
end,
|
||||||
build = function ()
|
build = function ()
|
||||||
vim.cmd [[silent! GoInstallDeps]]
|
vim.cmd [[silent! GoInstallDeps]]
|
||||||
end,
|
--end,
|
||||||
},
|
--},
|
||||||
|
--]]--
|
||||||
}
|
}
|
||||||
return plugins
|
return plugins
|
||||||
|
|
Loading…
Reference in New Issue