mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
Merge branch 'main' into vscode-launch-json
This commit is contained in:
commit
231628b24e
6 changed files with 34 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
*LazyVim.txt* For Neovim Last change: 2024 July 22
|
*LazyVim.txt* For Neovim Last change: 2024 July 23
|
||||||
|
|
||||||
==============================================================================
|
==============================================================================
|
||||||
Table of Contents *LazyVim-table-of-contents*
|
Table of Contents *LazyVim-table-of-contents*
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -177,7 +177,7 @@ map("t", "<c-_>", "<cmd>close<cr>", { desc = "which_key_ignore" })
|
||||||
map("n", "<leader>w", "<c-w>", { desc = "Windows", remap = true })
|
map("n", "<leader>w", "<c-w>", { desc = "Windows", remap = true })
|
||||||
map("n", "<leader>-", "<C-W>s", { desc = "Split Window Below", remap = true })
|
map("n", "<leader>-", "<C-W>s", { desc = "Split Window Below", remap = true })
|
||||||
map("n", "<leader>|", "<C-W>v", { desc = "Split Window Right", remap = true })
|
map("n", "<leader>|", "<C-W>v", { desc = "Split Window Right", remap = true })
|
||||||
map("n", "<c-w>d", "<C-W>c", { desc = "Delete Window", remap = true })
|
map("n", "<leader>wd", "<C-W>c", { desc = "Delete Window", remap = true })
|
||||||
LazyVim.toggle.map("<c-w>m", LazyVim.toggle.maximize)
|
LazyVim.toggle.map("<c-w>m", LazyVim.toggle.maximize)
|
||||||
|
|
||||||
-- tabs
|
-- tabs
|
||||||
|
|
|
||||||
|
|
@ -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