- Finally move all keymappings into which-key - Change to MunsMan/kitty-navigator.nvim - Change mapping for switching window/split to Ctrl+Shift+<vim-motion> - Add some new mappings like 'gt' for LazyGit Terminal split
17 lines
540 B
Lua
17 lines
540 B
Lua
-- -----------------------------------------------------------------------------
|
|
-- -------------------------------- CodeSnap -----------------------------------
|
|
-- -----------------------------------------------------------------------------
|
|
return {
|
|
"mistricky/codesnap.nvim",
|
|
build = "make",
|
|
opts = {
|
|
save_path = "~/Pictures/Screenshots/",
|
|
has_breadcrumbs = true,
|
|
show_workspace = true,
|
|
bg_theme = "default",
|
|
watermark = "Rootiest Snippets",
|
|
code_font_family = "Iosevka NF",
|
|
code_font_size = 12,
|
|
},
|
|
}
|