This commit is contained in:
DeveloperDurp 2024-09-15 08:55:49 -05:00
parent 059deee3e1
commit 1a93244c1a
2 changed files with 17 additions and 13 deletions

View file

@ -11,6 +11,8 @@ set $down j
set $up k set $up k
set $right l set $right l
set $term kitty set $term kitty
set $files cosmic-files
set $browser flatpak run io.gitlab.librewolf-community
set $menu wofi set $menu wofi
include /etc/sway/config-vars.d/* include /etc/sway/config-vars.d/*
@ -60,6 +62,12 @@ bindsym $mod+Shift+i exec /opt/goland/bin/goland.sh
# Start a terminal # Start a terminal
bindsym $mod+Return exec $term bindsym $mod+Return exec $term
# File Browser
bindsym $mod+Shift+t exec $files
# Browser
bindsym $mod+Shift+f exec $browser
# Kill focused window # Kill focused window
bindsym $mod+Shift+q kill 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 XF86MonBrightnessDown exec brightnessctl s 10%-
bindsym XF86MonBrightnessUp 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 # ScreenShot
bindsym $mod+p exec grim -g "$(slurp)" - | wl-copy bindsym $mod+p exec grim -g "$(slurp)" - | wl-copy

View file

@ -64,7 +64,6 @@ let g:WhichKeyDesc_NewScratchFile = "<leader>fs New scratch file"
map <leader>ff <action>(GoToFile) map <leader>ff <action>(GoToFile)
map <leader><leader> <action>(RecentFiles) map <leader><leader> <action>(RecentFiles)
map <leader>fl <action>(RecentLocations) map <leader>fl <action>(RecentLocations)
map <leader>fs <action>(NewScratchFile)
" Window Management " Window Management
@ -135,11 +134,11 @@ let g:WhichKeyDesc_GoTag_AddKey = "<leader>gt Add Tag"
map <leader>gt :action IntentionActionAsAction_com.goide.inspections.tag.GoTagAddKeyIntention<CR> map <leader>gt :action IntentionActionAsAction_com.goide.inspections.tag.GoTagAddKeyIntention<CR>
" Errors " Errors
let g:WhichKeyDesc_Errors = "<leader>E Errors" let g:WhichKeyDesc_Errors = "<leader>e Errors"
let g:WhichKeyDesc_NextError = "<leader>En Next error in solution" let g:WhichKeyDesc_NextError = "<leader>en Next error in solution"
let g:WhichKeyDesc_PrevError = "<leader>Ep Previous error in solution" let g:WhichKeyDesc_PrevError = "<leader>ep Previous error in solution"
map <leader>En <action>(ReSharperGotoNextErrorInSolution) map <leader>en <action>(ReSharperGotoNextErrorInSolution)
map <leader>Ep <action>(ReSharperGotoPrevErrorInSolution) map <leader>ep <action>(ReSharperGotoPrevErrorInSolution)
" Menu " Menu
let g:WhichKeyDesc_Menu = "<leader>m Menu" let g:WhichKeyDesc_Menu = "<leader>m Menu"
@ -170,12 +169,14 @@ let g:WhichKeyDesc_new_html = "<leader>nh New HTML File"
let g:WhichKeyDesc_new_docker = "<leader>nd New Docker File" let g:WhichKeyDesc_new_docker = "<leader>nd New Docker File"
let g:WhichKeyDesc_new_powershell = "<leader>np New Powershell File" let g:WhichKeyDesc_new_powershell = "<leader>np New Powershell File"
let g:WhichKeyDesc_new_file = "<leader>nf New File" let g:WhichKeyDesc_new_file = "<leader>nf New File"
let g:WhichKeyDesc_new_scratch = "<leader>nf Scratch File"
map <leader>ng <Action>(Go.NewGoFile) map <leader>ng <Action>(Go.NewGoFile)
map <leader>nD <Action>(NewDir) map <leader>nD <Action>(NewDir)
map <leader>nh <Action>(NewHtmlFile) map <leader>nh <Action>(NewHtmlFile)
map <leader>nd <Action>(NewDockerfile) map <leader>nd <Action>(NewDockerfile)
map <leader>np <Action>(NewPowerShellFile) map <leader>np <Action>(NewPowerShellFile)
map <leader>nf <Action>(NewFile) map <leader>nf <Action>(NewFile)
map <leader>ns <action>(NewScratchFile)
" Git windows " Git windows
let g:WhichKeyDesc_git = "<leader>G Git/Go Operations" let g:WhichKeyDesc_git = "<leader>G Git/Go Operations"
@ -189,13 +190,13 @@ map <leader>GP <Action>(Vcs.Push)
" Tools " Tools
let g:WhichKeyDesc_Tools = "<leader>t Tools" let g:WhichKeyDesc_Tools = "<leader>t Tools"
let g:WhichKeyDesc_git_Tools_Copilot = "<leader>tc Copilot" let g:WhichKeyDesc_git_Tools_Copilot = "<leader>tc Continue"
let g:WhichKeyDesc_git_Tools_Debug = "<leader>td Debug" let g:WhichKeyDesc_git_Tools_Debug = "<leader>td Debug"
let g:WhichKeyDesc_git_Tools_Terminal = "<leader>tt Terminal" let g:WhichKeyDesc_git_Tools_Terminal = "<leader>tt Terminal"
let g:WhichKeyDesc_tools_mergerequest = "<leader>tm Merge Request" let g:WhichKeyDesc_tools_mergerequest = "<leader>tm Merge Request"
let g:WhichKeyDesc_tools_services = "<leader>ts Services" let g:WhichKeyDesc_tools_services = "<leader>ts Services"
let g:WhichKeyDesc_tools_run = "<leader>tr Run" let g:WhichKeyDesc_tools_run = "<leader>tr Run"
map <leader>tc <Action>(copilot.chat.show) map <leader>tc <Action>(continue.focusContinueInputWithoutClear)
map <leader>td <Action>(ActivateDebugToolWindow) map <leader>td <Action>(ActivateDebugToolWindow)
map <leader>tt <Action>(ActivateTerminalToolWindow) map <leader>tt <Action>(ActivateTerminalToolWindow)
map <leader>tm <Action>(ActivateMergeRequestsToolWindow) map <leader>tm <Action>(ActivateMergeRequestsToolWindow)