diff --git a/.config/sway/config b/.config/sway/config index 26a200e..d52f05f 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -11,6 +11,8 @@ set $down j set $up k set $right l set $term kitty +set $files cosmic-files +set $browser flatpak run io.gitlab.librewolf-community set $menu wofi include /etc/sway/config-vars.d/* @@ -60,6 +62,12 @@ bindsym $mod+Shift+i exec /opt/goland/bin/goland.sh # Start a terminal bindsym $mod+Return exec $term + # File Browser + bindsym $mod+Shift+t exec $files + + # Browser + bindsym $mod+Shift+f exec $browser + # Kill focused window bindsym $mod+Shift+q kill @@ -194,11 +202,6 @@ bindsym XF86AudioMute exec "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle; pkill -R bindsym XF86MonBrightnessDown exec brightnessctl s 10%- bindsym XF86MonBrightnessUp exec brightnessctl s +10% -# File Browser -bindsym $mod+Shift+t exec cosmic-files - -# File Browser -bindsym $mod+Shift+f exec flatpak run io.gitlab.librewolf-community # ScreenShot bindsym $mod+p exec grim -g "$(slurp)" - | wl-copy diff --git a/.ideavimrc b/.ideavimrc index ad4bc24..f4d0b18 100644 --- a/.ideavimrc +++ b/.ideavimrc @@ -64,7 +64,6 @@ let g:WhichKeyDesc_NewScratchFile = "fs New scratch file" map ff (GoToFile) map (RecentFiles) map fl (RecentLocations) -map fs (NewScratchFile) " Window Management @@ -135,11 +134,11 @@ let g:WhichKeyDesc_GoTag_AddKey = "gt Add Tag" map gt :action IntentionActionAsAction_com.goide.inspections.tag.GoTagAddKeyIntention " Errors -let g:WhichKeyDesc_Errors = "E Errors" -let g:WhichKeyDesc_NextError = "En Next error in solution" -let g:WhichKeyDesc_PrevError = "Ep Previous error in solution" -map En (ReSharperGotoNextErrorInSolution) -map Ep (ReSharperGotoPrevErrorInSolution) +let g:WhichKeyDesc_Errors = "e Errors" +let g:WhichKeyDesc_NextError = "en Next error in solution" +let g:WhichKeyDesc_PrevError = "ep Previous error in solution" +map en (ReSharperGotoNextErrorInSolution) +map ep (ReSharperGotoPrevErrorInSolution) " Menu let g:WhichKeyDesc_Menu = "m Menu" @@ -170,12 +169,14 @@ let g:WhichKeyDesc_new_html = "nh New HTML File" let g:WhichKeyDesc_new_docker = "nd New Docker File" let g:WhichKeyDesc_new_powershell = "np New Powershell File" let g:WhichKeyDesc_new_file = "nf New File" +let g:WhichKeyDesc_new_scratch = "nf Scratch File" map ng (Go.NewGoFile) map nD (NewDir) map nh (NewHtmlFile) map nd (NewDockerfile) map np (NewPowerShellFile) map nf (NewFile) +map ns (NewScratchFile) " Git windows let g:WhichKeyDesc_git = "G Git/Go Operations" @@ -189,13 +190,13 @@ map GP (Vcs.Push) " Tools let g:WhichKeyDesc_Tools = "t Tools" -let g:WhichKeyDesc_git_Tools_Copilot = "tc Copilot" +let g:WhichKeyDesc_git_Tools_Copilot = "tc Continue" let g:WhichKeyDesc_git_Tools_Debug = "td Debug" let g:WhichKeyDesc_git_Tools_Terminal = "tt Terminal" let g:WhichKeyDesc_tools_mergerequest = "tm Merge Request" let g:WhichKeyDesc_tools_services = "ts Services" let g:WhichKeyDesc_tools_run = "tr Run" -map tc (copilot.chat.show) +map tc (continue.focusContinueInputWithoutClear) map td (ActivateDebugToolWindow) map tt (ActivateTerminalToolWindow) map tm (ActivateMergeRequestsToolWindow)