Skip to content

Commit

Permalink
general aliases and ignore improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
smoorg committed Apr 27, 2024
1 parent 77c82b8 commit 9136aa2
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 16 deletions.
8 changes: 5 additions & 3 deletions .bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,19 @@
#dotnet
alias dotnet-ef=$HOME/.dotnet/tools/dotnet-ef

#tmux - force 256 colors mode
alias tmux='tmux -2'
alias cdrepo='cd $(repocd)'

# apps
alias vnc='remmina'
alias castget='castget -C ~/.config/castget/castget.conf'
alias news='newsboat ; pkill -RTMIN+10 dwmblocks'
alias news='newsboat'
alias burncd='asunder'

alias ll="ls -l --color"

# home git folder
alias dot='git -C .dotfiles/ --work-tree=$HOME'
alias dot='git -C ~/.dotfiles/ --work-tree=$HOME'

# docker stop all
alias dkill='docker stop $(docker ps -q)'
Expand Down
49 changes: 37 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# sys folders
Pictures
Videos
Documents
Games
Desktop
Thrash

# cache
.cache
.castget/
Expand All @@ -11,10 +19,15 @@
.surf

# dev environment
.angular-config.json
.cargo/
.cmake/
.docker/
.java/
.mongodb/
go/

# js
.angular-config.json
node_modules/
.npmrc
.npm/
Expand All @@ -23,9 +36,29 @@ yarn.lock
.yarn/
.vscode/
.vscode-oss/
go/

# ruby
.bundle/
.gem/
.rvm/

# csharp configs
.aspnet/
.dotnet/
.mono/
.nuget/
.vsts/
.local/share/NuGet/

# dotnet templates cache
.templateengine/

# hosting
.vagrant
.ngrok2

# gaming
.dosbox/
.steam/
.paradoxlauncher/
.steampath
Expand All @@ -36,16 +69,7 @@ go/
.wine
Games/
My Games/
# csharp configs
.aspnet/
.dotnet/
.mono/
.nuget/
.vsts/
.local/share/NuGet/

# dotnet templates cache
.templateengine/

# audio
.ncmpcpp/
Expand Down Expand Up @@ -80,10 +104,11 @@ freetube-bin/
.nmcli_history
.lesshst
.node_repl_history
*_history

# bash files
.Xauthority
.bash_history
.bash_history*
.bash_logout
.bash_aliases_priv
.bash_params_priv
Expand Down
2 changes: 1 addition & 1 deletion .xinitrc
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ done &

# window manager
#java param to work with webstorm
export _JAVA_AWT_WM_NONREPARENTING=1
#export _JAVA_AWT_WM_NONREPARENTING=1

[ -x "$SCRIPTS_DIR/startdwm" ] && startdwm || /usr/local/bin/dwm

0 comments on commit 9136aa2

Please sign in to comment.