dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 445bdcc989227c3aaa56a11f5dbfecf4de6922bc
parent 442cf3905f2c129418049deb0d3aec7d112cd3c8
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri,  7 Jun 2019 13:11:09 +0200

Update sxhkdkeybinds and change buffer switch bind in editor

Diffstat:
M.config/sxhkd/sxhkdrc | 4+++-
M.vim/plugin/keybinds.vim | 4++--
2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/.config/sxhkd/sxhkdrc b/.config/sxhkd/sxhkdrc @@ -34,8 +34,10 @@ super + {Print,Delete} XF86Launch1 xrandr --output LVDS1 --auto --scale 1.0x1.0; xbacklight -set 100 super + F5 - $TERMINAL -e nmtui + $TERMINAL -e nmtui-connect #$TERMINAL -e sudo wpa_cli +super + shift + F5 + sudo systemctl restart NetworkManager super + F7 displayselect super + F8 diff --git a/.vim/plugin/keybinds.vim b/.vim/plugin/keybinds.vim @@ -95,7 +95,7 @@ nnoremap <leader>gP :Gpull<cr> inoremap jk <Esc> nnoremap <leader>o :browse oldfiles<cr> -nnoremap <leader>b :b <c-d> +nnoremap <leader>, :b <c-d> nnoremap <leader>f :e <c-d> " using fzf.vim @@ -103,7 +103,7 @@ augroup FzfBinds autocmd VimEnter * if exists(":Buffers") | \ exe "nnoremap <leader><leader> :Rg<cr>" | \ exe "nnoremap <leader>o :History<cr>" | - \ exe "nnoremap <leader>b :Buffers<cr>" | + \ exe "nnoremap <leader>, :Buffers<cr>" | \ exe "nnoremap <leader>f :Files<cr>" | \ exe "nnoremap <leader>F :GFiles<cr>" | \ exe "nnoremap <leader>l :Lines<cr>" |