diff --git a/bin/install.sh b/bin/install.sh old mode 100644 new mode 100755 index cabc0ff..d33bc00 --- a/bin/install.sh +++ b/bin/install.sh @@ -1 +1,22 @@ -ln -s (pwd)/dotfiles/fish/config.fish ~/.config/fish/config.fish +#!/usr/bin/bash +set -eu + +# ========================================================= +# check executing location +# ========================================================= +if [ ! -d "bin" -a ! -d "dotfiles" ]; then + echo "Wrong execution location" + echo "Please run this script on dotfiles root folder." + exit 1 +fi + + +# ========================================================= +# links +# ========================================================= +ln -sf $(pwd)/dotfiles/fish/config.fish ~/.config/fish/config.fish +ln -sf $(pwd)/dotfiles/starship/starship.toml ~/.config/starship.toml +ln -sf $(pwd)/dotfiles/tmux.conf ~/.tmux.conf + + +ln -sf $(pwd)/dotfiles/nvim/init.lua ~/.config/nvim/init.lua diff --git a/bin/install_ubuntu.sh b/bin/install_ubuntu.sh new file mode 100644 index 0000000..b11fb91 --- /dev/null +++ b/bin/install_ubuntu.sh @@ -0,0 +1,2 @@ +#!/usr/bin/bash -euo + diff --git a/dotfiles/fish/config.fish b/dotfiles/fish/config.fish index aabc101..79292b1 100644 --- a/dotfiles/fish/config.fish +++ b/dotfiles/fish/config.fish @@ -19,10 +19,29 @@ if status is-interactive source ~/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true end +# starship +starship init fish | source + +function set_win_title + echo -ne "\033]0; (basename "$PWD") \007" +end +set starship_precmd_uesr_func "set_win_title" + +# keychain +set -x SHELL fish +keychain --eval --quiet -Q id_rsa, id_ed25519 | source +set -x SHELL bash + +# opam +# source ~/.opam/opam-init/init.fish > /dev/null 2> /dev/null; or true +opam env --shell fish | source # key bindings bind \b backward-kill-word + +# env +set -x LESS '-i -r -M -R -S -W -z-4 -x4' # save fish log to my custom file set -gx my_fish_history "$HOME/my_fish_history.txt" function save_myhistory --on-event fish_prompt -d "Save custom shell log to $my_fish_history" diff --git a/dotfiles/neovim/init.lua b/dotfiles/neovim/init.lua index 4a6db37..773e057 100644 --- a/dotfiles/neovim/init.lua +++ b/dotfiles/neovim/init.lua @@ -1,3 +1,4 @@ +--print("init.lua loaded") ----------------------------------------------------------- -- basic configurations vim.o.number = true