some quality of life stuff

This commit is contained in:
2025-02-18 01:26:31 +01:00
parent ed451107ae
commit 2492e21125
3 changed files with 27 additions and 21 deletions

View File

@@ -7,8 +7,13 @@ $terminal = uwsm app -T
$filemanager = uwsm app -- dolphin
$launcher = uwsm app -- walker
$clipboard = uwsm app -- nwg-clipman
$browser = uwsm app -- firefox
$browser = uwsm app -- zen-browser
$browserprv = uwsm app -- zen-browser --private-window
$editor = uwsm app -T -- vim
$editor0 = uwsm app -- zeditor
$clipman = uwsm app -- nwg-clipman
$taskman = uwsm app -- uuctl walker -d
$lockcmd = loginctl lock-session
##############################################
@@ -19,15 +24,18 @@ $mainMod = SUPER
bind = $mainMod, E, exec, $filemanager
bind = $mainMod, W, exec, $browser
bind = $mainMod SHIFT, W, exec, $browserprv
bind = $mainMod Shift, E, exec, $editor
bind = $mainMod Shift ALT_L, E, exec, $editor0
bind = $mainMod, X, exec, $launcher
bind = $mainMod, C, exec, uwsm app -- nwg-clipman
bind = $mainMod, C, exec, $clipman
bind = $mainMod, Return, exec, $terminal
bind = ALT_L, Escape, exec, uwsm app -- uuctl
bind = $mainMod, Escape, exec, $taskman
bind = $mainMod SHIFT, C, exec, hyprctl reload # reload Hyprland
bind = $mainMod SHIFT, Escape, exit,
bind = $mainMod, Escape, exec, $lockcmd
bind = $mainMod SHIFT, Pause, exit,
bind = $mainMod, Pause, exec, $lockcmd
bind = $mainMod SHIFT, Escape, exec, $lockcmd
bind = $mainMod, I, pin
bind = $mainMod, Q, killactive,
@@ -39,8 +47,8 @@ bind = $mainMod, S, togglespecialworkspace # show/hide special workspac
#dwindle layout
bind = $mainMod, Tab, swapsplit,
bind = ALT, Tab, togglesplit,
bind = CTRL, Tab, layoutmsg, movetoroot
bind = $mainMod SHIFT, Tab, togglesplit,
bind = $mainMod CTRL, Tab, layoutmsg, movetoroot
bind = $mainMod, P, pseudo,
# MOVE FOCUS with mainMod + vim keys

View File

@@ -102,7 +102,7 @@
"hyprpanel.restartCommand": "uwsm app -- hyprpanel -q; uwsm app --hyprpanel",
"menus.transitionTime": 200,
"theme.bar.buttons.workspaces.smartHighlight": true,
"bar.customModules.ram.labelType": "used",
"bar.customModules.ram.labelType": "used/total",
"theme.bar.buttons.modules.cpu.enableBorder": false,
"bar.customModules.cpuTemp.unit": "metric",
"bar.customModules.cpuTemp.sensor": "/sys/devices/platform/nct6683.2592/hwmon/hwmon4/temp1_input",

View File

@@ -3,21 +3,19 @@ set nocompatible
" Helps force plugins to load correctly when it is turned back on below.
filetype off
" PlugInstallation
let data_dir = has('nvim') ? stdpath('data') . '/site' : '~/.vim'
if empty(glob(data_dir . '/autoload/plug.vim'))
silent execute '!curl -fLo '.'/home/mpuchstein/.config/vim'.'/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
endif
call plug#begin()
" List Plugins here
Plug 'ajmwagar/vim-deus'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'simnalamburt/vim-mundo'
Plug 'dense-analysis/ale'
Plug 'mhinz/vim-signify'
Plug 'ajmwagar/vim-deus'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'simnalamburt/vim-mundo'
Plug 'dense-analysis/ale'
Plug 'mhinz/vim-signify'
Plug 'preservim/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'ryanoasis/vim-devicons'
Plug 'PhilRunninger/nerdtree-visual-selection'
call plug#end()
" Enable plugins and load plugin for the detected file type.