AutoYADM commit: 2024-12-13 14:30:01
This commit is contained in:
parent
7d6d79933f
commit
66b2c61487
7 changed files with 12 additions and 4 deletions
|
@ -10,6 +10,7 @@ include ~/.cache/wal/colors-kitty.conf
|
|||
background_opacity 0.8
|
||||
map ctrl+shift+r no_op
|
||||
map ctrl+shift+o no_op
|
||||
# map ctrl+enter send_text all \u000A
|
||||
# map alt+v new_window
|
||||
# map ctrl+left neighboring_window left
|
||||
# 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+f toggle_maximized
|
||||
audio_bell no
|
||||
|
||||
|
|
|
@ -96,5 +96,6 @@
|
|||
"vim-tridactyl": { "branch": "master", "commit": "fdd069bde3a34c786abed4601b6d59a065590ad9" },
|
||||
"vimtex": { "branch": "master", "commit": "3401dc81a14b7251bd813e2411eaf0d3b65bd2af" },
|
||||
"which-key.nvim": { "branch": "main", "commit": "4ab3bbe976e63b5390d3fca74a52a092a041cd30" },
|
||||
"yanky.nvim": { "branch": "main", "commit": "f9b905994cccf3c55f41af3a0a1f4c76c844e411" },
|
||||
"yazi.nvim": { "branch": "main", "commit": "89e011ee7df170e681a112bb293c2599b3b97853" }
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"lazyvim.plugins.extras.ai.copilot-chat",
|
||||
"lazyvim.plugins.extras.coding.mini-comment",
|
||||
"lazyvim.plugins.extras.coding.mini-surround",
|
||||
"lazyvim.plugins.extras.coding.yanky",
|
||||
"lazyvim.plugins.extras.dap.core",
|
||||
"lazyvim.plugins.extras.editor.dial",
|
||||
"lazyvim.plugins.extras.editor.inc-rename",
|
||||
|
|
|
@ -3,7 +3,10 @@
|
|||
-- Add any additional keymaps here
|
||||
local map = vim.keymap.set
|
||||
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>")
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
-- })
|
||||
return {
|
||||
"hrsh7th/nvim-cmp",
|
||||
-- enabled = false,
|
||||
enabled = false,
|
||||
-- ---@param opts cmp.ConfigSchema
|
||||
-- opts = function(_, opts)
|
||||
-- local has_words_before = function()
|
||||
|
|
|
@ -32,7 +32,8 @@ return {
|
|||
},
|
||||
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.
|
||||
min_chars = 2,
|
||||
},
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
set -g default-terminal "xterm-kitty"
|
||||
set -as terminal-features ",xterm-256color:RGB"
|
||||
# set -as terminal-features ',xterm-kitty:RGB'
|
||||
# set -gw xterm-keys on
|
||||
|
||||
|
||||
# For image.nvim
|
||||
set -gq allow-passthrough on
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue