diff --git a/common/envs b/common/envs index c14dd3d..d3d3272 100644 --- a/common/envs +++ b/common/envs @@ -2,6 +2,7 @@ os/linux os/linux/arch os/linux/nix os/linux/debian +os/macos host/desktop host/desktop/wallwart host/desktop/rising diff --git a/common/fish/config.fish b/common/fish/config.fish index a9f764c..f106100 100755 --- a/common/fish/config.fish +++ b/common/fish/config.fish @@ -12,7 +12,7 @@ end if has_command brew && test -f (brew --prefix asdf)/lib/asdf.fish set -Ux ASDF_DIR (brew --prefix asdf) - source (brew --prefix asdf)/lib/asdf.fish + source (brew --prefix asdf)/libexec/asdf.fish else if test -f $HOME/.asdf/asdf.fish source $HOME/.asdf/asdf.fish else if test -f /opt/asdf-vm/asdf.fish diff --git a/common/fish/paths.fish b/common/fish/paths.fish index a8451ef..cf5c303 100644 --- a/common/fish/paths.fish +++ b/common/fish/paths.fish @@ -71,4 +71,4 @@ if test -n "$NIX_PATH" set NIX_PATH : end test -d $HOME/.nix-defexpr/channels && \ - set --export --universal NIX_PATH $HOME/.nix-defexpr/channels:$NIX_PATH + set --export --universal NIX_PATH $HOME/.nix-defexpr/channels:$NIX_PATH diff --git a/common/fish/prompt.fish b/common/fish/prompt.fish index 902841f..e0aceef 100644 --- a/common/fish/prompt.fish +++ b/common/fish/prompt.fish @@ -12,9 +12,8 @@ end function preprocess_pwd test (pwd) = / && echo "/" && return 1 test (pwd) = $NICE_HOME && echo "~" && return 0 - # TODO: fix for macOS - echo (pwd) | cut -c2- | \ - awk '{split($0,p,"/");for(k in p){if(k==length(p)){printf "/%s",p[k]}else{printf "/%.'$MAX_PATH_PIECE_CHARS[1]'s",p[k]}}}' + pwd | cut -c2- | \ + awk '{n=split($0,p,"/");for(i=1;i<=n;i++){if(i==n){printf "/%s",p[i]}else{printf "/%.'$MAX_PATH_PIECE_CHARS[1]'s",p[i]}}}' end function fish_prompt diff --git a/common/git/config b/common/git/config index e0bc12e..2c0917b 100644 --- a/common/git/config +++ b/common/git/config @@ -81,3 +81,8 @@ [include] path = ~/.config/lytedev-env/host-layer-personal/gitconfig path = ~/.config/lytedev-env/divvy/gitconfig + +# [push] +# pushOption = merge_request.create +# pushOption = merge_request.remove_source_branch +# pushOption = merge_request.assign="daniel.flanagan" diff --git a/common/neovim/colors/base16-donokai.vim b/common/neovim/colors/base16-donokai.vim index 3af3c64..676c00e 120000 --- a/common/neovim/colors/base16-donokai.vim +++ b/common/neovim/colors/base16-donokai.vim @@ -1 +1 @@ -/home/daniel/.home/.config/lytedev-dotfiles/common/colors/vim \ No newline at end of file +/Users/danielflanagan/.config/lytedev-dotfiles/common/colors/vim \ No newline at end of file diff --git a/os/macos/config.d.fish b/os/macos/config.d.fish new file mode 100644 index 0000000..c8d40de --- /dev/null +++ b/os/macos/config.d.fish @@ -0,0 +1,4 @@ +#!/usr/bin/env fish + +fish_add_path /opt/homebrew/sbin +fish_add_path /opt/homebrew/bin