some quality of life stuff
This commit is contained in:
@@ -7,8 +7,13 @@ $terminal = uwsm app -T
|
|||||||
$filemanager = uwsm app -- dolphin
|
$filemanager = uwsm app -- dolphin
|
||||||
$launcher = uwsm app -- walker
|
$launcher = uwsm app -- walker
|
||||||
$clipboard = uwsm app -- nwg-clipman
|
$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
|
$editor = uwsm app -T -- vim
|
||||||
|
$editor0 = uwsm app -- zeditor
|
||||||
|
$clipman = uwsm app -- nwg-clipman
|
||||||
|
$taskman = uwsm app -- uuctl walker -d
|
||||||
|
|
||||||
$lockcmd = loginctl lock-session
|
$lockcmd = loginctl lock-session
|
||||||
|
|
||||||
##############################################
|
##############################################
|
||||||
@@ -19,15 +24,18 @@ $mainMod = SUPER
|
|||||||
|
|
||||||
bind = $mainMod, E, exec, $filemanager
|
bind = $mainMod, E, exec, $filemanager
|
||||||
bind = $mainMod, W, exec, $browser
|
bind = $mainMod, W, exec, $browser
|
||||||
|
bind = $mainMod SHIFT, W, exec, $browserprv
|
||||||
bind = $mainMod Shift, E, exec, $editor
|
bind = $mainMod Shift, E, exec, $editor
|
||||||
|
bind = $mainMod Shift ALT_L, E, exec, $editor0
|
||||||
bind = $mainMod, X, exec, $launcher
|
bind = $mainMod, X, exec, $launcher
|
||||||
bind = $mainMod, C, exec, uwsm app -- nwg-clipman
|
bind = $mainMod, C, exec, $clipman
|
||||||
bind = $mainMod, Return, exec, $terminal
|
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, C, exec, hyprctl reload # reload Hyprland
|
||||||
bind = $mainMod SHIFT, Escape, exit,
|
bind = $mainMod SHIFT, Pause, exit,
|
||||||
bind = $mainMod, Escape, exec, $lockcmd
|
bind = $mainMod, Pause, exec, $lockcmd
|
||||||
|
bind = $mainMod SHIFT, Escape, exec, $lockcmd
|
||||||
|
|
||||||
bind = $mainMod, I, pin
|
bind = $mainMod, I, pin
|
||||||
bind = $mainMod, Q, killactive,
|
bind = $mainMod, Q, killactive,
|
||||||
@@ -39,8 +47,8 @@ bind = $mainMod, S, togglespecialworkspace # show/hide special workspac
|
|||||||
|
|
||||||
#dwindle layout
|
#dwindle layout
|
||||||
bind = $mainMod, Tab, swapsplit,
|
bind = $mainMod, Tab, swapsplit,
|
||||||
bind = ALT, Tab, togglesplit,
|
bind = $mainMod SHIFT, Tab, togglesplit,
|
||||||
bind = CTRL, Tab, layoutmsg, movetoroot
|
bind = $mainMod CTRL, Tab, layoutmsg, movetoroot
|
||||||
bind = $mainMod, P, pseudo,
|
bind = $mainMod, P, pseudo,
|
||||||
|
|
||||||
# MOVE FOCUS with mainMod + vim keys
|
# MOVE FOCUS with mainMod + vim keys
|
||||||
|
@@ -102,7 +102,7 @@
|
|||||||
"hyprpanel.restartCommand": "uwsm app -- hyprpanel -q; uwsm app --hyprpanel",
|
"hyprpanel.restartCommand": "uwsm app -- hyprpanel -q; uwsm app --hyprpanel",
|
||||||
"menus.transitionTime": 200,
|
"menus.transitionTime": 200,
|
||||||
"theme.bar.buttons.workspaces.smartHighlight": true,
|
"theme.bar.buttons.workspaces.smartHighlight": true,
|
||||||
"bar.customModules.ram.labelType": "used",
|
"bar.customModules.ram.labelType": "used/total",
|
||||||
"theme.bar.buttons.modules.cpu.enableBorder": false,
|
"theme.bar.buttons.modules.cpu.enableBorder": false,
|
||||||
"bar.customModules.cpuTemp.unit": "metric",
|
"bar.customModules.cpuTemp.unit": "metric",
|
||||||
"bar.customModules.cpuTemp.sensor": "/sys/devices/platform/nct6683.2592/hwmon/hwmon4/temp1_input",
|
"bar.customModules.cpuTemp.sensor": "/sys/devices/platform/nct6683.2592/hwmon/hwmon4/temp1_input",
|
||||||
|
24
vim/vimrc
24
vim/vimrc
@@ -3,21 +3,19 @@ set nocompatible
|
|||||||
" Helps force plugins to load correctly when it is turned back on below.
|
" Helps force plugins to load correctly when it is turned back on below.
|
||||||
filetype off
|
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()
|
call plug#begin()
|
||||||
" List Plugins here
|
" List Plugins here
|
||||||
Plug 'ajmwagar/vim-deus'
|
Plug 'ajmwagar/vim-deus'
|
||||||
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||||
Plug 'vim-airline/vim-airline'
|
Plug 'vim-airline/vim-airline'
|
||||||
Plug 'vim-airline/vim-airline-themes'
|
Plug 'vim-airline/vim-airline-themes'
|
||||||
Plug 'simnalamburt/vim-mundo'
|
Plug 'simnalamburt/vim-mundo'
|
||||||
Plug 'dense-analysis/ale'
|
Plug 'dense-analysis/ale'
|
||||||
Plug 'mhinz/vim-signify'
|
Plug 'mhinz/vim-signify'
|
||||||
|
Plug 'preservim/nerdtree'
|
||||||
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
||||||
|
Plug 'ryanoasis/vim-devicons'
|
||||||
|
Plug 'PhilRunninger/nerdtree-visual-selection'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Enable plugins and load plugin for the detected file type.
|
" Enable plugins and load plugin for the detected file type.
|
||||||
|
Reference in New Issue
Block a user