From 5cf9cf2cfdc090825519c51be87f3f271d601649 Mon Sep 17 00:00:00 2001 From: christy-lumberg Date: Tue, 4 Nov 2025 08:22:13 +0000 Subject: [PATCH] added starship.toml to repo --- setup.sh | 2 +- starship.toml | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) mode change 100644 => 100755 setup.sh create mode 100644 starship.toml diff --git a/setup.sh b/setup.sh old mode 100644 new mode 100755 index 9b15155..48f973a --- a/setup.sh +++ b/setup.sh @@ -1,4 +1,4 @@ #!/bin/bash # setup.sh ln -sf ~/.config/nvim/.tmux.conf ~/.tmux.conf - +ln -sf ~/.config/nvim/starship.toml ~/.config/starship.toml diff --git a/starship.toml b/starship.toml new file mode 100644 index 0000000..77efcf4 --- /dev/null +++ b/starship.toml @@ -0,0 +1,38 @@ +# Catppuccin Mocha theme to match nvim +format = """ +[┌─](bold blue)$directory$git_branch$git_status +[└─](bold blue)$character""" + +[character] +success_symbol = "[➜](bold green)" +error_symbol = "[➜](bold red)" + +[directory] +style = "bold cyan" +truncation_length = 3 +truncate_to_repo = true + +[git_branch] +symbol = " " +style = "bold purple" + +[git_status] +style = "bold yellow" +conflicted = "🏳" +ahead = "⇡${count}" +behind = "⇣${count}" +diverged = "⇕⇡${ahead_count}⇣${behind_count}" +untracked = "🤷" +stashed = "📦" +modified = "📝" +staged = '[++\($count\)](green)' +renamed = "👅" +deleted = "🗑" + +[nodejs] +symbol = " " +format = "via [$symbol($version )]($style)" + +[python] +symbol = " " +format = 'via [${symbol}${pyenv_prefix}(${version} )]($style)'