This commit is contained in:
Daniel Fichtinger 2024-11-06 20:05:49 -05:00
parent 7ad1e216a6
commit becbcaa464
4 changed files with 12 additions and 1 deletions

View file

@ -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",

View file

@ -48,3 +48,4 @@ Legay
#ssesment
assesment/!
CVEs
BlackArch

Binary file not shown.

View file

@ -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 '%%'"