Compare commits

...

3 commits

2 changed files with 15 additions and 20 deletions

View file

@ -11,7 +11,6 @@ arc-gtk-theme
arc-x-icons-theme arc-x-icons-theme
asp asp
autoconf autoconf
autocutsel
autogen autogen
automake automake
aws-cli-v2 aws-cli-v2
@ -58,6 +57,7 @@ d2-bin
dconf-editor dconf-editor
debian-archive-keyring debian-archive-keyring
debootstrap debootstrap
debugedit
debuginfod debuginfod
deno deno
devhelp devhelp
@ -74,6 +74,7 @@ docker-compose
dosfstools dosfstools
downgrade downgrade
e2fsprogs e2fsprogs
easyeffects
easytag easytag
edk2-shell edk2-shell
efibootmgr efibootmgr
@ -158,8 +159,6 @@ hunspell-en_us
hwdetect hwdetect
hwinfo hwinfo
hyperfine hyperfine
i3-wm
i3status
i3status-rust i3status-rust
imapfilter imapfilter
indent indent
@ -198,6 +197,7 @@ llvm
logrotate logrotate
lsb-release lsb-release
lsof lsof
lsp-plugins-lv2
lsscsi lsscsi
luacheck luacheck
lvm2 lvm2
@ -302,11 +302,8 @@ refind
reflector reflector
reiserfsprogs reiserfsprogs
repo repo
revive
ripgrep ripgrep
rlwrap
rmtrash rmtrash
rofi
rp-pppoe rp-pppoe
rsync rsync
ruff ruff
@ -334,7 +331,6 @@ sysfsutils
systemd-resolvconf systemd-resolvconf
systemd-sysvcompat systemd-sysvcompat
tcpdump tcpdump
tealdeer
telegram-desktop telegram-desktop
terminus-font terminus-font
termshark termshark

View file

@ -59,15 +59,19 @@ vim.g.loaded_vimballPlugin = 1
vim.g.loaded_zipPlugin = 1 vim.g.loaded_zipPlugin = 1
-- Map leader -- Map leader
vim.g.mapleader = " " vim.g.mapleader = " "
vim.g.maplocalleader = "," vim.g.maplocalleader = ","
-- vim-dispatch
-- dispatch vim.g.dispatch_no_maps = 1
vim.g.dispatch_no_maps = 1
-- vim-matchup -- vim-matchup
vim.g.matchup_matchparen_offscreen = { method = 'popup', fullwidth = true } vim.g.matchup_matchparen_offscreen = { method = 'popup', fullwidth = true }
vim.g.matchup_surround_enabled = 1 vim.g.matchup_surround_enabled = 1
-- No default mappings for tmux navigator
vim.g.tmux_navigator_no_mappings = 1
-- Write the current buffer, but only if changed before navigating from Vim to tmux pane
vim.g.tmux_navigator_save_on_switch = 1
-- Disable ]]/[[ style bindings
vim.g.no_rust_maps = 1
if os.getenv("SSH_CONNECTION") then if os.getenv("SSH_CONNECTION") then
local osc52 = require('vim.ui.clipboard.osc52') local osc52 = require('vim.ui.clipboard.osc52')
@ -98,11 +102,6 @@ else
} }
end end
-- No default mappings for tmux navigator
vim.g.tmux_navigator_no_mappings = 1
-- Write the current buffer, but only if changed before navigating from Vim to tmux pane
vim.g.tmux_navigator_save_on_switch = 1
-- We do this to prevent the loading of the system fzf.vim plugin. This is -- We do this to prevent the loading of the system fzf.vim plugin. This is
-- present at least on Arch/Manjaro -- present at least on Arch/Manjaro
vim.cmd.set{ args = { 'rtp-=/usr/share/vim/vimfiles' } } vim.cmd.set{ args = { 'rtp-=/usr/share/vim/vimfiles' } }