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

View File

@ -59,15 +59,19 @@ vim.g.loaded_vimballPlugin = 1
vim.g.loaded_zipPlugin = 1
-- Map leader
vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- dispatch
vim.g.dispatch_no_maps = 1
vim.g.mapleader = " "
vim.g.maplocalleader = ","
-- vim-dispatch
vim.g.dispatch_no_maps = 1
-- vim-matchup
vim.g.matchup_matchparen_offscreen = { method = 'popup', fullwidth = true }
vim.g.matchup_surround_enabled = 1
vim.g.matchup_matchparen_offscreen = { method = 'popup', fullwidth = true }
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
local osc52 = require('vim.ui.clipboard.osc52')
@ -98,11 +102,6 @@ else
}
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
-- present at least on Arch/Manjaro
vim.cmd.set{ args = { 'rtp-=/usr/share/vim/vimfiles' } }