diff options
author | Abouzar Parvan <[email protected]> | 2021-07-09 16:37:25 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-07-09 08:07:25 -0400 |
commit | 2866ba528c7b49c7c7261a327750a7b8fcff345d (patch) | |
tree | 2d55fc73758d78a0c733b48930ed73aa3b245c9b /lua/lv-which-key/init.lua | |
parent | a9e7b6ff8c60e70df22189d7f1ad17f893e1a727 (diff) |
fix styling issues (#811)
Diffstat (limited to 'lua/lv-which-key/init.lua')
-rw-r--r-- | lua/lv-which-key/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lv-which-key/init.lua b/lua/lv-which-key/init.lua index f7c90c57..beaaff42 100644 --- a/lua/lv-which-key/init.lua +++ b/lua/lv-which-key/init.lua @@ -21,7 +21,7 @@ which_key.setup { z = true, -- bindings for folds, spelling and others prefixed with z g = true, -- bindings for prefixed with g }, - spelling = {enabled = true, suggestions = 20}, -- use which-key for spelling hints + spelling = { enabled = true, suggestions = 20 }, -- use which-key for spelling hints }, icons = { breadcrumb = "ยป", -- symbol used in the command line area that shows your active key combo @@ -88,7 +88,7 @@ vim.api.nvim_set_keymap("n", "<leader>c", ":BufferClose<CR>", { noremap = true, -- Save vim.api.nvim_set_keymap("n", "<leader>w", ":w!<CR>", { noremap = true, silent = true }) --- Quit +-- Quit vim.api.nvim_set_keymap("n", "<leader>q", ":q!<CR>", { noremap = true, silent = true }) -- open lv-config |