nvim: removed keybinding helper
This commit is contained in:
@@ -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",
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user