Compare commits
3 commits
72693e646d
...
fcd7cc3603
Author | SHA1 | Date | |
---|---|---|---|
fcd7cc3603 | |||
42986bba16 | |||
b03c452c9b |
3 changed files with 14 additions and 3 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit 83cd783ecd1943aea2b820b9f4d73deab8cb5969
|
Subproject commit d7aac8d5546ec2bcbc44d258973188090551c13e
|
|
@ -7,6 +7,18 @@
|
||||||
// custom settings, run `zed: open default settings` from the
|
// custom settings, run `zed: open default settings` from the
|
||||||
// command palette (cmd-shift-p / ctrl-shift-p)
|
// command palette (cmd-shift-p / ctrl-shift-p)
|
||||||
{
|
{
|
||||||
|
"ssh_connections": [
|
||||||
|
{
|
||||||
|
"host": "naydra",
|
||||||
|
"projects": [
|
||||||
|
{
|
||||||
|
"paths": [
|
||||||
|
"~/Documents/code/c/totalschaden"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
"vim": {
|
"vim": {
|
||||||
"use_system_clipboard": "on_yank"
|
"use_system_clipboard": "on_yank"
|
||||||
},
|
},
|
||||||
|
|
3
.zshrc
3
.zshrc
|
@ -56,6 +56,7 @@ alias mkpatch="diff -Naru"
|
||||||
alias shrug="echo -ne ¯\\\_(ツ)_/¯"
|
alias shrug="echo -ne ¯\\\_(ツ)_/¯"
|
||||||
alias sheep="echo -ne 🐑"
|
alias sheep="echo -ne 🐑"
|
||||||
alias knife="echo -ne 🔪"
|
alias knife="echo -ne 🔪"
|
||||||
|
alias please="echo -ne 👉👈"
|
||||||
alias bak=backup
|
alias bak=backup
|
||||||
|
|
||||||
### Functions
|
### Functions
|
||||||
|
@ -80,8 +81,6 @@ function condac() {
|
||||||
conda activate $@
|
conda activate $@
|
||||||
export HOST=$(hostname)
|
export HOST=$(hostname)
|
||||||
}
|
}
|
||||||
# calculate on shell with `c 1+1`
|
|
||||||
function c() { printf "%s\n" "$@" | bc -l; }
|
|
||||||
# Call Python and execute multiple statements from args
|
# Call Python and execute multiple statements from args
|
||||||
function py() {
|
function py() {
|
||||||
python <<< "
|
python <<< "
|
||||||
|
|
Loading…
Add table
Reference in a new issue