1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-12-04 23:40:32 +00:00

Compare commits

...

2 commits

Author SHA1 Message Date
467d085484 Use compiled nvim 2022-10-03 02:53:41 +02:00
511c4ab1e1 Open browser 2022-10-03 02:53:24 +02:00
4 changed files with 22 additions and 4 deletions

View file

@ -8,4 +8,4 @@ fi
# User specific environment and startup programs
export GOPATH="$HOME/go"
export PATH="$HOME/.npm-global/bin:$PATH:$HOME/.cargo/bin:$GOPATH/bin:$HOME/bin/julia/bin"
export PATH="$HOME/.npm-global/bin:$PATH:$HOME/.cargo/bin:$HOME/bin/nvim/bin:$GOPATH/bin:$HOME/bin/julia/bin"

View file

@ -3,7 +3,7 @@ if status is-interactive
set -g fish_greeting
# Interactive environment variables
set -gx EDITOR /usr/bin/nvim
set -gx EDITOR ~/bin/nvim/bin/nvim
# Setup
## Zoxide

View file

@ -52,4 +52,12 @@ tabs:
parts:
- direction: Vertical
run:
command: { cmd: fish, args: ["-C", "vp advlabdb"] }
command:
{
cmd: fish,
args:
[
"-C",
"nohup xdg-open http://localhost:5000 &> /dev/null; vp advlabdb",
],
}

View file

@ -42,7 +42,7 @@ tabs:
args: ["-C", "cd ~/code/hosted/how_to_linux/src && nvim"],
}
- direction: Vertical
name: "run"
name: "mdbook"
parts:
- direction: Vertical
run:
@ -51,3 +51,13 @@ tabs:
cmd: fish,
args: ["-C", "cd ~/code/hosted/how_to_linux && mdbook serve"],
}
- direction: Vertical
name: "test"
parts:
- direction: Vertical
run:
command:
{
cmd: fish,
args: ["-C", "nohup xdg-open http://localhost:3000 &> /dev/null"],
}