5 Commits

Author SHA1 Message Date
lachtan obecny
dfca731f77 fish initialization remake 2026-01-27 20:07:30 +01:00
lachtan obecny
2b9d0835f0 Go and OpenCode path 2026-01-21 06:49:12 +01:00
lachtan
07e034d5f4 rename npm.sh to nvm-npm.sh 2026-01-15 05:44:09 +00:00
lachtan
7884d4fb61 install claude code 2026-01-15 05:43:27 +00:00
lachtan
ac6c6203c3 add podman-compose alias 2026-01-15 05:28:36 +00:00
9 changed files with 21 additions and 11 deletions

14
fishrc
View File

@@ -1,11 +1,3 @@
# ~/.config/fish/config.fish
# echo "source $LWS/fishrc" > $__fish_config_dir/conf.d/lws.fish
# $__fish_config_dir/conf.d (by default, ~/.config/fish/conf.d/)
# $__fish_sysconf_dir/conf.d (by default, /etc/fish/conf.d/)
set -gx PAGER less
set -g fish_prompt_pwd_dir_length 0
# set -g fish_autosuggestion_enabled 0
# fish_config theme choose "fish default"
for file in (dirname (status -f))/rc.fish/*.fish
source $file
end

View File

@@ -1,4 +1,5 @@
# Linux Workspace Functions
# shellcheck shell=bash
if [ -z "$time_ms" ]; then
readonly time_ms='date +%s%3N'

9
install/claude-code.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# https://code.claude.com/docs/en/setup
set -E -o errexit -o nounset -o pipefail
set -x
curl -fsSL https://claude.ai/install.sh | bash

5
rc.fish/01-init.fish Normal file
View File

@@ -0,0 +1,5 @@
set -gx PAGER less
set -g fish_prompt_pwd_dir_length 0
# set -g fish_autosuggestion_enabled 0
# fish_config theme choose "fish default"

View File

View File

@@ -15,6 +15,7 @@ alias clws='cd $LWS'
alias chs=cheatsheet
alias dc=docker-compose
alias pc=podman-compose
alias dcl='dcm logs'
alias dcfilter="sed -r 's/^[^|]+\| //g'"

1
rc/go.sh Normal file
View File

@@ -0,0 +1 @@
append_path_try "$HOME/.local/go/bin"

1
rc/opencode.sh Normal file
View File

@@ -0,0 +1 @@
append_path_try "$HOME/.opencode/bin"