upd
This commit is contained in:
parent
7ad1e216a6
commit
becbcaa464
4 changed files with 12 additions and 1 deletions
|
@ -21,6 +21,14 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
|
|||
vim.api.nvim_set_hl(0, "ObsidianTodo", { fg = colors.complement:to_vim(), bold = true, underline = false })
|
||||
vim.api.nvim_set_hl(0, "obsidiantag", { fg = colors.complement:to_vim(), bold = false, italic = true })
|
||||
vim.api.nvim_set_hl(0, "ObsidianTag", { fg = colors.complement:to_vim(), bold = false, italic = true })
|
||||
vim.api.nvim_buf_set_keymap(0, "n", "<leader>mc", "gzaiW`", { desc = "Markdown: add Code Surround", silent = true })
|
||||
vim.api.nvim_buf_set_keymap(
|
||||
0,
|
||||
"n",
|
||||
"<leader>mr",
|
||||
"gzd`",
|
||||
{ desc = "Markdown: delete Code Surround", silent = true }
|
||||
)
|
||||
vim.api.nvim_buf_set_keymap(
|
||||
0,
|
||||
"i",
|
||||
|
|
|
@ -48,3 +48,4 @@ Legay
|
|||
#ssesment
|
||||
assesment/!
|
||||
CVEs
|
||||
BlackArch
|
||||
|
|
Binary file not shown.
|
@ -46,8 +46,10 @@ bind v split-window -v -c "#{pane_current_path}"
|
|||
bind h split-window -h -c "#{pane_current_path}"
|
||||
bind C-x kill-session
|
||||
bind S command-prompt -p "rename session:" "rename-session '%%'"
|
||||
bind W command-prompt -p "rename window:" "rename-window '%%'"
|
||||
# bind W command-prompt -p "rename window:" "rename-window '%%'"
|
||||
bind - copy-mode
|
||||
# bind m next-layout
|
||||
|
||||
|
||||
# Joining and sending
|
||||
bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue