nvim: removed keybinding helper
This commit is contained in:
@@ -16,24 +16,24 @@ return {
|
|||||||
-- GitHub integration for vim-fugitive
|
-- GitHub integration for vim-fugitive
|
||||||
"tpope/vim-rhubarb",
|
"tpope/vim-rhubarb",
|
||||||
},
|
},
|
||||||
{
|
-- {
|
||||||
-- Hints keybinds
|
-- -- Hints keybinds
|
||||||
"folke/which-key.nvim",
|
-- "folke/which-key.nvim",
|
||||||
opts = {
|
-- opts = {
|
||||||
win = {
|
-- win = {
|
||||||
border = {
|
-- border = {
|
||||||
{ "╭", "FloatBorder" },
|
-- { "╭", "FloatBorder" },
|
||||||
{ "─", "FloatBorder" },
|
-- { "─", "FloatBorder" },
|
||||||
{ "╮", "FloatBorder" },
|
-- { "╮", "FloatBorder" },
|
||||||
{ "│", "FloatBorder" },
|
-- { "│", "FloatBorder" },
|
||||||
{ "╯", "FloatBorder" },
|
-- { "╯", "FloatBorder" },
|
||||||
{ "─", "FloatBorder" },
|
-- { "─", "FloatBorder" },
|
||||||
{ "╰", "FloatBorder" },
|
-- { "╰", "FloatBorder" },
|
||||||
{ "│", "FloatBorder" },
|
-- { "│", "FloatBorder" },
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
},
|
-- },
|
||||||
{
|
{
|
||||||
-- Autoclose parentheses, brackets, quotes, etc.
|
-- Autoclose parentheses, brackets, quotes, etc.
|
||||||
"windwp/nvim-autopairs",
|
"windwp/nvim-autopairs",
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ vim.o.pumheight = 10 -- pop up menu height
|
|||||||
vim.o.cmdheight = 1
|
vim.o.cmdheight = 1
|
||||||
vim.o.signcolumn = "yes"
|
vim.o.signcolumn = "yes"
|
||||||
vim.o.updatetime = 250
|
vim.o.updatetime = 250
|
||||||
vim.o.timeoutlen = 300
|
vim.o.timeoutlen = 1500
|
||||||
vim.o.splitbelow = true
|
vim.o.splitbelow = true
|
||||||
vim.o.splitright = true
|
vim.o.splitright = true
|
||||||
vim.o.conceallevel = 0
|
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.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.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
|
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