1
0
Fork 0

Compare commits

..

No commits in common. "66fd675eaf7abcbb2e96c1a4bc27feba64bdc184" and "8dc8f57fc695fd45ec6035764eb2b6d1bf8b50f5" have entirely different histories.

4 changed files with 0 additions and 16 deletions

View file

@ -155,12 +155,6 @@ local function on_attach(args) -- {{{
return { noremap = true, silent = true, buffer = args.buf, desc = desc }
end
if client.name == 'yamlls' then
vim.keymap.set('n', '<Leader>os', function()
require('yaml-companion').open_ui_select()
end, mkOpts('Select yaml schema'))
end
-- null-ls has mostly no hover and therefore trashes manpages for shell
if client.supports_method('textDocument/hover') and client.name ~= 'null-ls' then
vim.keymap.set('n', 'K', vim.lsp.buf.hover, mkOpts('LSP hover'))

View file

@ -30,12 +30,6 @@ function M.config()
local modif = kind_func(entry, vim_item)
-- folders don't exist on UNIX!
modif.kind = string.gsub(modif.kind, 'Folder', 'Directory')
local max_len = 30
local content = modif.abbr
if #content > max_len then
modif.abbr = vim.fn.strcharpart(content, 0, max_len) .. '...'
end
return modif
end,
},

View file

@ -42,5 +42,3 @@ alias ssh='kitten ssh'
alias podr='podman run -it --rm'
alias podrs='podman run -it --rm --entrypoint /bin/sh'
alias kubegen='kubectl create --dry-run=client -oyaml'

View file

@ -19,5 +19,3 @@ export LOCALE_ARCHIVE=/usr/lib/locale/locale-archive
GPG_TTY=$(tty)
export GPG_TTY
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)