add changes

This commit is contained in:
Seymur Bagirov 2024-01-05 01:25:14 +04:00
parent 0be4bcc40c
commit 4ec20d6b6a
6 changed files with 34 additions and 9 deletions

View File

@ -37,16 +37,24 @@ map <leader>tb <Action>(ToggleLineBreakpoint)
map <leader>qi <Action>(QuickImplementations)
map <leader>pf <Action>(GotoFile)
map <leader>ps <Action>(TextSearchAction)
map <leader>cj <Action>(HideActiveWindow)
map <leader>hw <Action>(HideActiveWindow)
map <leader>hwa <Action>(HideAllWindows)
map <leader>sw <Action>(JumpToLastWindow)
map <leader>pe <Action>(SearchEverywhere)
""csharp specific actions
""dotnet specific actions
map <leader>emm <Action>(EfCore.Features.Migrations.AddMigrationAction)
map <leader>emr <Action>(EfCore.Features.Database.RemoveMigrationAction)
map <leader>edu <Action>(EfCore.Features.Database.UpdateDatabaseAction)
map <leader>dnc <Action>(Rider.Web.DotNetUserSecrets)
map <leader>dng <Action>(ActivateNuGetToolWindow)
""convenient remaps
nnoremap <A-j> :m .+1<CR>==
nnoremap <A-k> :m .-2<CR>==

View File

@ -17,6 +17,8 @@ exec-once = wl-paste --type image --watch cliphist store #Stores only image data
exec-once = python3 -m http.server -d /home/themystery/Bento
exec-once = ~/Documents/hyprland-plugins/plugins-loader.sh load
# env

View File

@ -271,3 +271,9 @@ bind = $mainMod ALT, down, movewindow, d
misc {
disable_hyprland_logo=true
}
plugin {
hyprtrails {
color = rgba(ffaa00ff)
}
}

View File

@ -4,7 +4,9 @@
# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers.com-ADDED-Mercy-Overwatch.mp4
# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Rainy-Train-Station-4K.mp4
exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Night-Italian-Cafe-4K.mp4
# exec-once = mpvpaper -o "--loop" -f HDMI-A-2 ~/Videos/LiveWallpapers/mylivewallpapers-com-Night-Italian-Cafe-4K.mp4
exec-once = swww init
# exec-once=wallengine --screen-root HDMI-A-2 1383845959

View File

@ -1,10 +1,15 @@
#!/bin/sh
movePathAndLink() {
moveAndLink() {
mv ~/.config/$1 ~/.config/$1.bckp
ln -s $(pwd)/$1 ~/.config/$1
}
moveHomeAndLink(){
mv ~/$1 ~/$1.bckp
ln -s $(pwd)/$1 ~/$1
}
moveShell() {
mv ~/.zshrc ~/.zshrc.bckp
ln -s $(pwd)/zsh/.zshrc ~/.zshrc
@ -40,10 +45,12 @@ while $status; do
fi
done
movePathAndLink nvim
movePathAndLink hypr
movePathAndLink waybar
movePathAndLink kitty
moveAndLink nvim
moveAndLink hypr
moveAndLink waybar
moveAndLink kitty
moveHomeAndLink .ideavimrc
moveShell

View File

@ -47,7 +47,7 @@ test -s ~/.alias && . ~/.alias || true
alias vim="nvim"
export DOTFILE="$HOME/Documents/dotfiles"
export DOTFILES="$HOME/Documents/dotfiles"
alias overwatch='lutris lutris:rungame/overwatch-2'
alias nuget='mono ~/nuget.exe'