Compare commits

...

3 Commits

Author SHA1 Message Date
d80835de81 Update ohmyzsh and zsh-autosuggestions 2025-05-28 18:40:49 +02:00
cc7d42ff42 Added zsh autopair plugin 2025-05-28 18:34:54 +02:00
e68bbd00f6 Removed old resize keymap 2025-05-28 18:18:55 +02:00
6 changed files with 7 additions and 8 deletions

3
.gitmodules vendored
View File

@@ -7,3 +7,6 @@
[submodule "tmux/tpm"] [submodule "tmux/tpm"]
path = tmux/tpm path = tmux/tpm
url = https://github.com/tmux-plugins/tpm url = https://github.com/tmux-plugins/tpm
[submodule "zsh/custom/plugins/zsh-autopair"]
path = zsh/custom/plugins/zsh-autopair
url = https://github.com/hlissner/zsh-autopair

View File

@@ -7,12 +7,6 @@ vim.keymap.set({ "n", "v" }, "<Space>", "<Nop>", { noremap = true, silent = true
vim.keymap.set("n", "k", "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true }) vim.keymap.set("n", "k", "v:count == 0 ? 'gk' : 'k'", { expr = true, silent = true })
vim.keymap.set("n", "j", "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true }) vim.keymap.set("n", "j", "v:count == 0 ? 'gj' : 'j'", { expr = true, silent = true })
-- Keybinds for resizing windows
vim.keymap.set("n", "<S-Up>", "<cmd>resize +2<CR>")
vim.keymap.set("n", "<S-Down>", "<cmd>resize -2<CR>")
vim.keymap.set("n", "<S-Left>", "<cmd>vertical resize -2<CR>")
vim.keymap.set("n", "<S-Right>", "<cmd>vertical resize +2<CR>")
-- Some nice adjustments -- Some nice adjustments
vim.keymap.set("n", "<C-d>", "<C-d>zz") vim.keymap.set("n", "<C-d>", "<C-d>zz")
vim.keymap.set("n", "<C-u>", "<C-u>zz") vim.keymap.set("n", "<C-u>", "<C-u>zz")

View File

@@ -26,6 +26,7 @@ plugins=(
colored-man-pages colored-man-pages
command-not-found command-not-found
dirhistory dirhistory
zsh-autopair
) )
bindkey -M vicmd "k" up-line-or-beginning-search bindkey -M vicmd "k" up-line-or-beginning-search