mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Merge branch 'main' into gg-add-new-markdown-renderer
This commit is contained in:
commit
335a298a77
4 changed files with 32 additions and 3 deletions
|
|
@ -55,7 +55,6 @@ vim.api.nvim_create_autocmd("FileType", {
|
||||||
group = augroup("close_with_q"),
|
group = augroup("close_with_q"),
|
||||||
pattern = {
|
pattern = {
|
||||||
"PlenaryTestPopup",
|
"PlenaryTestPopup",
|
||||||
"grug-far",
|
|
||||||
"help",
|
"help",
|
||||||
"lspinfo",
|
"lspinfo",
|
||||||
"notify",
|
"notify",
|
||||||
|
|
|
||||||
|
|
@ -138,6 +138,7 @@ return {
|
||||||
local grug = require("grug-far")
|
local grug = require("grug-far")
|
||||||
local ext = vim.bo.buftype == "" and vim.fn.expand("%:e")
|
local ext = vim.bo.buftype == "" and vim.fn.expand("%:e")
|
||||||
grug.grug_far({
|
grug.grug_far({
|
||||||
|
transient = true,
|
||||||
prefills = {
|
prefills = {
|
||||||
filesFilter = ext and ext ~= "" and "*." .. ext or nil,
|
filesFilter = ext and ext ~= "" and "*." .. ext or nil,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,32 @@ return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
servers = {
|
servers = {
|
||||||
elixirls = {},
|
elixirls = {
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"<leader>cp",
|
||||||
|
function()
|
||||||
|
local params = vim.lsp.util.make_position_params()
|
||||||
|
LazyVim.lsp.execute({
|
||||||
|
command = "manipulatePipes:serverid",
|
||||||
|
arguments = { "toPipe", params.textDocument.uri, params.position.line, params.position.character },
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
desc = "To Pipe",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"<leader>cP",
|
||||||
|
function()
|
||||||
|
local params = vim.lsp.util.make_position_params()
|
||||||
|
LazyVim.lsp.execute({
|
||||||
|
command = "manipulatePipes:serverid",
|
||||||
|
arguments = { "fromPipe", params.textDocument.uri, params.position.line, params.position.character },
|
||||||
|
})
|
||||||
|
end,
|
||||||
|
desc = "From Pipe",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,11 @@ function M.open(file, opts)
|
||||||
vim.opt_local.signcolumn = "yes"
|
vim.opt_local.signcolumn = "yes"
|
||||||
vim.opt_local.statuscolumn = " "
|
vim.opt_local.statuscolumn = " "
|
||||||
vim.opt_local.conceallevel = 3
|
vim.opt_local.conceallevel = 3
|
||||||
vim.diagnostic.disable(float.buf)
|
if vim.diagnostic.enable then
|
||||||
|
vim.diagnostic.enable(false, { bufnr = float.buf })
|
||||||
|
else
|
||||||
|
vim.diagnostic.disable(float.buf)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue