From 309c1fd1947bffd13c76c0c3db9415b778a03aa9 Mon Sep 17 00:00:00 2001 From: Samuel Walker Date: Wed, 23 Oct 2024 23:28:12 -0600 Subject: [PATCH] updated config --- .config/hypr/hyprland.conf | 14 +++++++++----- .config/nvim/init.lua | 1 + 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index dd5f0ec..c9d55d6 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -153,6 +153,7 @@ master { misc { force_default_wallpaper = -1 # Set to 0 or 1 to disable the anime mascot wallpapers disable_hyprland_logo = false # If true disables the random hyprland logo / anime girl background. :( + middle_click_paste = true } @@ -208,13 +209,16 @@ bind = $mainMod, Space, exec, $menu bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, J, togglesplit, # dwindle bind = $mainMod, Escape, workspace, previous -bind = $mainMod, L, exec, loginctl lock-session +bind = $mainMod, x, exec, loginctl lock-session +bind = $mainMod, Tab, focusmonitor, -1 +bind = $mainMod+Shift, Tab, moveworkspacetomonitor, +0 -1 + # Move focus with mainMod + arrow keys -bind = $mainMod, left, movefocus, l -bind = $mainMod, right, movefocus, r -bind = $mainMod, up, movefocus, u -bind = $mainMod, down, movefocus, d +bind = $mainMod, h, movefocus, l +bind = $mainMod, l, movefocus, r +bind = $mainMod, k, movefocus, u +bind = $mainMod, j, movefocus, d # Switch workspaces with mainMod + [0-9] bind = $mainMod, 1, workspace, 1 diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index 7d75f80..9b9a36e 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -49,4 +49,5 @@ map('n', 'bw', 'BufferOrderByWindowNumber', opts) -- :BarbarDisable - very bad command, should never be used vim.cmd('Neotree') +vim.cmd('l') vim.o.tabstop = 4