nvim: removed keybinding helper

This commit is contained in:
scbj
2025-02-03 09:22:55 +01:00
parent 6231212e7b
commit 2e6d0c62c9
2 changed files with 19 additions and 20 deletions

View File

@@ -16,24 +16,24 @@ return {
-- GitHub integration for vim-fugitive
"tpope/vim-rhubarb",
},
{
-- Hints keybinds
"folke/which-key.nvim",
opts = {
win = {
border = {
{ "", "FloatBorder" },
{ "", "FloatBorder" },
{ "", "FloatBorder" },
{ "", "FloatBorder" },
{ "", "FloatBorder" },
{ "", "FloatBorder" },
{ "", "FloatBorder" },
{ "", "FloatBorder" },
},
},
},
},
-- {
-- -- Hints keybinds
-- "folke/which-key.nvim",
-- opts = {
-- win = {
-- border = {
-- { "╭", "FloatBorder" },
-- { "─", "FloatBorder" },
-- { "╮", "FloatBorder" },
-- { "│", "FloatBorder" },
-- { "╯", "FloatBorder" },
-- { "─", "FloatBorder" },
-- { "╰", "FloatBorder" },
-- { "│", "FloatBorder" },
-- },
-- },
-- },
-- },
{
-- Autoclose parentheses, brackets, quotes, etc.
"windwp/nvim-autopairs",

View File

@@ -43,7 +43,7 @@ vim.o.pumheight = 10 -- pop up menu height
vim.o.cmdheight = 1
vim.o.signcolumn = "yes"
vim.o.updatetime = 250
vim.o.timeoutlen = 300
vim.o.timeoutlen = 1500
vim.o.splitbelow = true
vim.o.splitright = true
vim.o.conceallevel = 0
@@ -68,4 +68,3 @@ vim.opt.shortmess:append("c") -- don't give |ins-completion-menu| messages
vim.opt.iskeyword:append("-") -- hyphenated words recognized by searches
vim.opt.formatoptions:remove({ "c", "r", "o" }) -- don't insert the current comment leader automatically for auto-wrapping comments using 'textwidth', hitting <Enter> in insert mode, or hitting 'o' or 'O' in normal mode.
vim.opt.runtimepath:remove("/usr/share/vim/vimfiles") -- separate vim plugins from neovim in case vim still in use