mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
Update bspwm. Add CoC plug in vim
This commit is contained in:
parent
7a0f05c664
commit
64007489ce
14 changed files with 112 additions and 113 deletions
|
|
@ -164,6 +164,7 @@ for i, (name, kwargs) in enumerate(group_names, 1):
|
|||
keys.append(Key([mod], str(i), lazy.group[name].toscreen()))
|
||||
keys.append(Key([mod, "shift"], str(i), lazy.window.togroup(name)))
|
||||
|
||||
|
||||
# Window layout(s)
|
||||
layout_theme = {
|
||||
"border_width": 2,
|
||||
|
|
@ -188,6 +189,7 @@ layouts = [
|
|||
# layout.Zoomy(),
|
||||
]
|
||||
|
||||
|
||||
# Panel
|
||||
widget_defaults = dict(
|
||||
font="Jatbrains Mono",
|
||||
|
|
@ -238,13 +240,20 @@ screens = [Screen(top=bar.Bar([
|
|||
)], 24 # Panel size
|
||||
))]
|
||||
|
||||
|
||||
# Drag floating layouts
|
||||
mouse = [
|
||||
Drag([mod], "Button1", lazy.window.set_position(), start=lazy.window.get_position()),
|
||||
Drag([mod], "Button3", lazy.window.set_size_floating(), start=lazy.window.get_size()),
|
||||
Click([mod], "Button2", lazy.window.bring_to_front())
|
||||
Drag([mod], "Button1",
|
||||
lazy.window.set_position(),
|
||||
start=lazy.window.get_position()),
|
||||
Drag([mod], "Button3",
|
||||
lazy.window.set_size_floating(),
|
||||
start=lazy.window.get_size()),
|
||||
Click([mod], "Button2",
|
||||
lazy.window.bring_to_front())
|
||||
]
|
||||
|
||||
|
||||
dgroups_key_binder = None
|
||||
dgroups_app_rules = []
|
||||
main = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue