remove cheatsheet.nvim
This commit is contained in:
parent
3d0a0e53f7
commit
cc48bfb5c8
|
@ -61,7 +61,6 @@ M.plugins = {
|
||||||
autosave = false, -- to autosave files
|
autosave = false, -- to autosave files
|
||||||
blankline = true, -- show code scope with symbols
|
blankline = true, -- show code scope with symbols
|
||||||
bufferline = true, -- list open buffers up the top, easy switching too
|
bufferline = true, -- list open buffers up the top, easy switching too
|
||||||
cheatsheet = true, -- search your commands/keymappings
|
|
||||||
colorizer = true, -- color RGB, HEX, CSS, NAME color codes
|
colorizer = true, -- color RGB, HEX, CSS, NAME color codes
|
||||||
comment = true, -- easily (un)comment code, language aware
|
comment = true, -- easily (un)comment code, language aware
|
||||||
dashboard = false, -- NeoVim 'home screen' on open
|
dashboard = false, -- NeoVim 'home screen' on open
|
||||||
|
@ -153,11 +152,6 @@ M.mappings.plugins = {
|
||||||
next_buffer = "<TAB>", -- next buffer
|
next_buffer = "<TAB>", -- next buffer
|
||||||
prev_buffer = "<S-Tab>", -- previous buffer
|
prev_buffer = "<S-Tab>", -- previous buffer
|
||||||
},
|
},
|
||||||
-- search your commands/keymappings
|
|
||||||
cheatsheet = {
|
|
||||||
default_keys = "<leader>dk",
|
|
||||||
user_keys = "<leader>uk",
|
|
||||||
},
|
|
||||||
-- easily (un)comment code, language aware
|
-- easily (un)comment code, language aware
|
||||||
comment = {
|
comment = {
|
||||||
toggle = "<leader>/", -- toggle comment (works on multiple lines)
|
toggle = "<leader>/", -- toggle comment (works on multiple lines)
|
||||||
|
|
|
@ -62,7 +62,7 @@ M.misc = function()
|
||||||
map("n", wnav.moveRight, "<C-w>l")
|
map("n", wnav.moveRight, "<C-w>l")
|
||||||
map("n", wnav.moveUp, "<C-w>k")
|
map("n", wnav.moveUp, "<C-w>k")
|
||||||
map("n", wnav.moveDown, "<C-w>j")
|
map("n", wnav.moveDown, "<C-w>j")
|
||||||
end
|
end
|
||||||
|
|
||||||
-- check the theme toggler
|
-- check the theme toggler
|
||||||
if nvChad_options.theme_toggler then
|
if nvChad_options.theme_toggler then
|
||||||
|
@ -128,17 +128,6 @@ M.bufferline = function()
|
||||||
map("n", m.prev_buffer, ":BufferLineCyclePrev <CR>")
|
map("n", m.prev_buffer, ":BufferLineCyclePrev <CR>")
|
||||||
end
|
end
|
||||||
|
|
||||||
M.cheatsheet = function()
|
|
||||||
local m = plugin_maps.cheatsheet
|
|
||||||
|
|
||||||
map("n", m.default_keys, ":lua require('cheatsheet').show_cheatsheet_telescope() <CR>")
|
|
||||||
map(
|
|
||||||
"n",
|
|
||||||
m.user_keys,
|
|
||||||
":lua require('cheatsheet').show_cheatsheet_telescope{bundled_cheatsheets = false, bundled_plugin_cheatsheets = false } <CR>"
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
M.comment = function()
|
M.comment = function()
|
||||||
local m = plugin_maps.comment.toggle
|
local m = plugin_maps.comment.toggle
|
||||||
map("n", m, ":CommentToggle <CR>")
|
map("n", m, ":CommentToggle <CR>")
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
local present, cheatsheet = pcall(require, "cheatsheet")
|
|
||||||
|
|
||||||
if not present then
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local mappings = require("core.utils").load_config().mappings
|
|
||||||
|
|
||||||
-- add user mappings to the cheetsheet
|
|
||||||
-- improve this function to not hardcode plugin
|
|
||||||
local function add_to_cheatsheet(section, keymap, desc)
|
|
||||||
if section == "plugin" then
|
|
||||||
for sec, key in pairs(mappings.plugin) do
|
|
||||||
add_to_cheatsheet(sec, key, sec)
|
|
||||||
end
|
|
||||||
else
|
|
||||||
if type(keymap) == "table" then
|
|
||||||
for sec, key in pairs(keymap) do
|
|
||||||
if type(sec) == "number" then
|
|
||||||
add_to_cheatsheet(section, key, desc or section)
|
|
||||||
else
|
|
||||||
add_to_cheatsheet(sec, key, desc or section)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
else
|
|
||||||
cheatsheet.add_cheat(section, keymap, desc or "Misc")
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
for section, keymap in pairs(mappings) do
|
|
||||||
add_to_cheatsheet(section, keymap)
|
|
||||||
end
|
|
||||||
|
|
||||||
require("cheatsheet").setup {
|
|
||||||
|
|
||||||
bundled_cheatsheets = {
|
|
||||||
enabled = { "default" },
|
|
||||||
disabled = { "unicode", "nerd-fonts" },
|
|
||||||
},
|
|
||||||
|
|
||||||
bundled_plugin_cheatsheets = false,
|
|
||||||
include_only_installed_plugins = true,
|
|
||||||
}
|
|
|
@ -263,18 +263,7 @@ return packer.startup(function()
|
||||||
use {
|
use {
|
||||||
"nvim-telescope/telescope.nvim",
|
"nvim-telescope/telescope.nvim",
|
||||||
cmd = "Telescope",
|
cmd = "Telescope",
|
||||||
-- because cheatsheet is not activated by a teleacope command
|
|
||||||
module = "cheatsheet",
|
|
||||||
requires = {
|
requires = {
|
||||||
{
|
|
||||||
"sudormrfbin/cheatsheet.nvim",
|
|
||||||
disable = not plugin_status.cheatsheet,
|
|
||||||
after = "telescope.nvim",
|
|
||||||
config = override_req("cheatsheet", "plugins.configs.cheatsheet"),
|
|
||||||
setup = function()
|
|
||||||
require("core.mappings").cheatsheet()
|
|
||||||
end,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"nvim-telescope/telescope-fzf-native.nvim",
|
"nvim-telescope/telescope-fzf-native.nvim",
|
||||||
run = "make",
|
run = "make",
|
||||||
|
|
Loading…
Reference in New Issue