AutoYADM commit: 2024-12-13 14:30:01

This commit is contained in:
Daniel Fichtinger 2024-12-13 14:30:01 -05:00
parent 7d6d79933f
commit 66b2c61487
7 changed files with 12 additions and 4 deletions

View file

@ -10,6 +10,7 @@ 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 \u000A
# 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
@ -18,4 +19,3 @@ map ctrl+shift+o no_op
map alt+shift+r load_config_file map alt+shift+r load_config_file
# map alt+f toggle_maximized # map alt+f toggle_maximized
audio_bell no audio_bell no

View file

@ -96,5 +96,6 @@
"vim-tridactyl": { "branch": "master", "commit": "fdd069bde3a34c786abed4601b6d59a065590ad9" }, "vim-tridactyl": { "branch": "master", "commit": "fdd069bde3a34c786abed4601b6d59a065590ad9" },
"vimtex": { "branch": "master", "commit": "3401dc81a14b7251bd813e2411eaf0d3b65bd2af" }, "vimtex": { "branch": "master", "commit": "3401dc81a14b7251bd813e2411eaf0d3b65bd2af" },
"which-key.nvim": { "branch": "main", "commit": "4ab3bbe976e63b5390d3fca74a52a092a041cd30" }, "which-key.nvim": { "branch": "main", "commit": "4ab3bbe976e63b5390d3fca74a52a092a041cd30" },
"yanky.nvim": { "branch": "main", "commit": "f9b905994cccf3c55f41af3a0a1f4c76c844e411" },
"yazi.nvim": { "branch": "main", "commit": "89e011ee7df170e681a112bb293c2599b3b97853" } "yazi.nvim": { "branch": "main", "commit": "89e011ee7df170e681a112bb293c2599b3b97853" }
} }

View file

@ -4,6 +4,7 @@
"lazyvim.plugins.extras.ai.copilot-chat", "lazyvim.plugins.extras.ai.copilot-chat",
"lazyvim.plugins.extras.coding.mini-comment", "lazyvim.plugins.extras.coding.mini-comment",
"lazyvim.plugins.extras.coding.mini-surround", "lazyvim.plugins.extras.coding.mini-surround",
"lazyvim.plugins.extras.coding.yanky",
"lazyvim.plugins.extras.dap.core", "lazyvim.plugins.extras.dap.core",
"lazyvim.plugins.extras.editor.dial", "lazyvim.plugins.extras.editor.dial",
"lazyvim.plugins.extras.editor.inc-rename", "lazyvim.plugins.extras.editor.inc-rename",

View file

@ -3,7 +3,10 @@
-- Add any additional keymaps here -- Add any additional keymaps here
local map = vim.keymap.set local map = vim.keymap.set
local wk = require("which-key") local wk = require("which-key")
local cmdh = require("colemak-dh")
map({ "n" }, "<C-Cr>", function()
vim.notify("Done!")
end)
vim.keymap.set({ "i", "n" }, "<C-t>", "<Nop>") vim.keymap.set({ "i", "n" }, "<C-t>", "<Nop>")

View file

@ -12,7 +12,7 @@
-- }) -- })
return { return {
"hrsh7th/nvim-cmp", "hrsh7th/nvim-cmp",
-- enabled = false, enabled = false,
-- ---@param opts cmp.ConfigSchema -- ---@param opts cmp.ConfigSchema
-- opts = function(_, opts) -- opts = function(_, opts)
-- local has_words_before = function() -- local has_words_before = function()

View file

@ -32,7 +32,8 @@ return {
}, },
completion = { completion = {
-- Set to false to disable completion. -- Set to false to disable completion.
nvim_cmp = true, -- TODO: Figure out how to make compatible with blink?
nvim_cmp = false,
-- Trigger completion at 2 chars. -- Trigger completion at 2 chars.
min_chars = 2, min_chars = 2,
}, },

View file

@ -2,6 +2,8 @@
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:RGB"
# set -as terminal-features ',xterm-kitty:RGB' # set -as terminal-features ',xterm-kitty:RGB'
# set -gw xterm-keys on
# For image.nvim # For image.nvim
set -gq allow-passthrough on set -gq allow-passthrough on