AutoYADM commit: 2024-12-13 14:45:02

This commit is contained in:
Daniel Fichtinger 2024-12-13 14:45:02 -05:00
parent 66b2c61487
commit e208c2c31a
3 changed files with 7 additions and 3 deletions

View file

@ -10,7 +10,10 @@ include ~/.cache/wal/colors-kitty.conf
background_opacity 0.8 background_opacity 0.8
map ctrl+shift+r no_op map ctrl+shift+r no_op
map ctrl+shift+o no_op map ctrl+shift+o no_op
map ctrl+enter send_text all \x1b[91;5u
# map ctrl+enter no_op
# map ctrl+enter send_text all \u000A # map ctrl+enter send_text all \u000A
# map ctrl+enter send_text all \x1b[91;5u
# map alt+v new_window # map alt+v new_window
# map ctrl+left neighboring_window left # map ctrl+left neighboring_window left
# map ctrl+right neighboring_window right # map ctrl+right neighboring_window right

View file

@ -1,10 +1,10 @@
-- Keymaps are automatically loaded on the VeryLazy event -- Keymaps are automatically loaded on the VeryLazy event
-- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua -- Default keymaps that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/keymaps.lua
-- Add any additional keymaps here -- Add any additional keymaps here
local map = vim.keymap.set
local wk = require("which-key") local wk = require("which-key")
map({ "n" }, "<C-Cr>", function() local map = vim.keymap.set
map({ "n" }, "^[[91;5u", function()
vim.notify("Done!") vim.notify("Done!")
end) end)

View file

@ -1,8 +1,9 @@
# set -g default-terminal "screen-256color" # set -g default-terminal "screen-256color"
set -g default-terminal "xterm-kitty" set -g default-terminal "xterm-kitty"
set -as terminal-features ",xterm-256color:RGB" set -as terminal-features ",xterm-256color:extkeys"
# set -as terminal-features ',xterm-kitty:RGB' # set -as terminal-features ',xterm-kitty:RGB'
# set -gw xterm-keys on # set -gw xterm-keys on
set -s extended-keys on
# For image.nvim # For image.nvim