diff --git a/.config/nvim/lua/plugins/render-markdown.lua b/.config/nvim/lua/plugins/render-markdown.lua index ec0ae21c..c40f0b9c 100644 --- a/.config/nvim/lua/plugins/render-markdown.lua +++ b/.config/nvim/lua/plugins/render-markdown.lua @@ -33,7 +33,6 @@ return { icons = icons.md, }, bullet = { - -- icons = { "•", "⦾", "∙" }, icons = { "•", "∙" }, }, latex = { diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 84693e7d..8f99bc4e 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -123,14 +123,14 @@ bind Up resize-pane -U 5 bind Down resize-pane -D 5 # Focus windows -bind u next-window -bind l previous-window +bind -n M-u next-window +bind -n M-l previous-window # Swap active pane with direction -bind -n M-j swap-pane -t left -bind -n M-l swap-pane -D -bind -n M-u swap-pane -U -bind -n M-y swap-pane -t right +bind C-j swap-pane -t left +bind C-l swap-pane -D +bind C-u swap-pane -U +bind C-y swap-pane -t right # m to mark a pane, M to "swap" it with current pane # Note: this does not "unmark" the marked pane!