use a more compatible pinentry method and improve neovim (as always)
This commit is contained in:
parent
75c598f22b
commit
d0c8b71ea3
@ -1 +1,3 @@
|
|||||||
pinentry-program /usr/bin/pinentry-curses
|
default-cache-ttl 28800
|
||||||
|
max-cache-ttl 28800
|
||||||
|
allow-loopback-pinentry
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
use-agent
|
use-agent
|
||||||
batch
|
pinentry-mode loopback
|
||||||
|
@ -135,7 +135,7 @@ return {
|
|||||||
mapping = cmp.mapping.preset.insert({
|
mapping = cmp.mapping.preset.insert({
|
||||||
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
['<C-p>'] = cmp.mapping.select_prev_item(cmp_select),
|
||||||
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
['<C-n>'] = cmp.mapping.select_next_item(cmp_select),
|
||||||
['<leader><tab>'] = cmp.mapping.confirm({ select = true }),
|
['<C-y>'] = cmp.mapping.confirm({ select = true }),
|
||||||
["<C-Space>"] = cmp.mapping.complete(),
|
["<C-Space>"] = cmp.mapping.complete(),
|
||||||
}),
|
}),
|
||||||
sources = cmp.config.sources({
|
sources = cmp.config.sources({
|
||||||
|
8
home/any/neovim/.config/nvim/lua/crthaze/lazy/tagbar.lua
Normal file
8
home/any/neovim/.config/nvim/lua/crthaze/lazy/tagbar.lua
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"majutsushi/tagbar",
|
||||||
|
init = function()
|
||||||
|
vim.keymap.set("n", "<leader>b", "<cmd>TagbarToggle<CR>")
|
||||||
|
end
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user