Compare commits

..

No commits in common. "0d16da2b3170c3c5f6a461953052823f3783aa63" and "26a0008b64320677fc4be860f9efd04aa5aaf09e" have entirely different histories.

3 changed files with 3 additions and 37 deletions

View file

@ -18,7 +18,6 @@ if status is-interactive
# abbr (from 3.6, --universal is removed) # abbr (from 3.6, --universal is removed)
abbr -a -- l less abbr -a -- l less
abbr -a -- ll 'eza -la --icons --git' abbr -a -- ll 'eza -la --icons --git'
abbr -a -- qpv 'qpdfview --unique'
zoxide init fish | source zoxide init fish | source

View file

@ -1,7 +1,7 @@
----------------------------------------------------------- -----------------------------------------------------------
-- Installing plugin manager 'lazy.nvim' -- Installing plugin manager 'lazy.nvim'
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ vim.fn.system({
"git", "git",
"clone", "clone",
@ -131,40 +131,7 @@ require('lazy').setup({
}, },
{ {
'folke/trouble.nvim', 'folke/trouble.nvim',
opts = {}, -- config = function
cmd = "Trouble",
keys = {
{
"<space>xx",
"<cmd>Trouble diagnostics toggle<cr>",
desc = "Diagnostics (Trouble)",
},
{
"<space>xX",
"<cmd>Trouble diagnostics toggle filter.buf=0<cr>",
desc = "Buffer Diagnostics (Trouble)",
},
{
"<space>cs",
"<cmd>Trouble symbols toggle focus=false<cr>",
desc = "Symbols (Trouble)",
},
{
"<space>cl",
"<cmd>Trouble lsp toggle focus=false win.position=bottom<cr>",
desc = "LSP Definitions / references / ... (Trouble)",
},
{
"<space>xL",
"<cmd>Trouble loclist toggle<cr>",
desc = "Location List (Trouble)",
},
{
"<space>xQ",
"<cmd>Trouble qflist toggle<cr>",
desc = "Quickfix List (Trouble)",
},
},
}, },
{ {
'Julian/lean.nvim', 'Julian/lean.nvim',

View file

@ -1,7 +1,7 @@
-- https://qiita.com/uhooi/items/99aeff822d4870a8e269 -- https://qiita.com/uhooi/items/99aeff822d4870a8e269
local lsp_names = function () local lsp_names = function ()
local clients = {} local clients = {}
for _, client in ipairs(vim.lsp.get_clients({ bufnr = 0})) do for _, client in ipairs(vim.lsp.get_active_clients({ bufnr = 0})) do
table.insert(clients, client.name) table.insert(clients, client.name)
end end
return '' .. table.concat(clients, ', ') return '' .. table.concat(clients, ', ')