sync
This commit is contained in:
parent
c9d541dfdb
commit
480adc3c65
5 changed files with 23 additions and 9 deletions
|
@ -1,10 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
hc() {
|
||||
#t="$EPOCHREALTIME"
|
||||
# t="$EPOCHREALTIME"
|
||||
herbstclient "$@"
|
||||
#t2="$EPOCHREALTIME"
|
||||
#echo "hc: $( bc<<<"$t2 - $t")" >&2
|
||||
# t2="$EPOCHREALTIME"
|
||||
# echo "hc: $( bc<<<"$t2 - $t")" >&2
|
||||
}
|
||||
panel_height=18
|
||||
# bgcolor=$(hc get frame_border_normal_color)
|
||||
|
|
|
@ -51,7 +51,8 @@ input {
|
|||
kb_options=
|
||||
kb_rules=
|
||||
|
||||
follow_mouse=1
|
||||
# use mouse without focus
|
||||
follow_mouse=2
|
||||
|
||||
touchpad {
|
||||
natural_scroll=no
|
||||
|
@ -62,6 +63,7 @@ input {
|
|||
|
||||
general {
|
||||
main_mod=SUPER
|
||||
layout = master
|
||||
|
||||
gaps_in=5
|
||||
gaps_out=5
|
||||
|
@ -154,6 +156,19 @@ bind=SUPER,left,movefocus,l
|
|||
bind=SUPER,right,movefocus,r
|
||||
bind=SUPER,up,movefocus,u
|
||||
bind=SUPER,down,movefocus,d
|
||||
bind=SUPER,h,movefocus,l
|
||||
bind=SUPER,l,movefocus,r
|
||||
bind=SUPER,k,movefocus,u
|
||||
bind=SUPER,j,movefocus,d
|
||||
|
||||
bind=SUPER_SHIFT,left,movewindow,l
|
||||
bind=SUPER_SHIFT,right,movewindow,r
|
||||
bind=SUPER_SHIFT,up,movewindow,u
|
||||
bind=SUPER_SHIFT,down,movewindow,d
|
||||
bind=SUPER_SHIFT,h,movewindow,l
|
||||
bind=SUPER_SHIFT,l,movewindow,r
|
||||
bind=SUPER_SHIFT,k,movewindow,u
|
||||
bind=SUPER_SHIFT,j,movewindow,d
|
||||
|
||||
bind=SUPER,1,moveworkspacetomonitor,1 current
|
||||
bind=SUPER,1,workspace,1
|
||||
|
|
|
@ -151,6 +151,7 @@ function M.setup()
|
|||
--"*/src/*/tsconfig.json",
|
||||
},
|
||||
always_show = { -- remains visible even if other settings would normally hide it
|
||||
".config",
|
||||
--".gitignored",
|
||||
},
|
||||
never_show = { -- remains hidden even if visible is toggled to true, this overrides always_show
|
||||
|
@ -158,7 +159,7 @@ function M.setup()
|
|||
--"thumbs.db"
|
||||
},
|
||||
never_show_by_pattern = { -- uses glob style patterns
|
||||
--".null-ls_*",
|
||||
".null-ls_*",
|
||||
},
|
||||
},
|
||||
follow_current_file = false, -- This will find and focus the file in the active buffer every
|
||||
|
|
|
@ -124,8 +124,6 @@ function M.setup()
|
|||
|
||||
use { 'ziglang/zig.vim', ft = 'zig' }
|
||||
|
||||
use_rocks { 'inspect' }
|
||||
|
||||
if packer_bootstrap then
|
||||
require('packer').sync()
|
||||
end
|
||||
|
|
|
@ -209,8 +209,8 @@ blur-background-exclude = [
|
|||
# Specify the backend to use: `xrender`, `glx`, or `xr_glx_hybrid`.
|
||||
# `xrender` is the default one.
|
||||
#
|
||||
# backend = "glx"
|
||||
backend = "xrender";
|
||||
backend = "glx"
|
||||
# backend = "xrender";
|
||||
|
||||
# Enable/disable VSync.
|
||||
# vsync = false
|
||||
|
|
Loading…
Add table
Reference in a new issue