diff --git a/.config/nvim b/.config/nvim index 0d85967..02dff96 160000 --- a/.config/nvim +++ b/.config/nvim @@ -1 +1 @@ -Subproject commit 0d8596712c8ae0ec54afbbef3df174e3d82f895c +Subproject commit 02dff968362310edd2fba1c0bc558987124c83ea diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..0966c19 --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,74 @@ +format = """ +$username\ +$hostname\ +$directory\ +$git_branch\ +$git_state\ +$git_status\ +$hg_branch\ +$cmd_duration\ +$line_break\ +$lua\ +$elixir\ +$python\ +$zig\ +$character""" + +right_format = """ +$time""" + + +command_timeout = 3000 + +[directory] +style = "blue" + +[character] +success_symbol = "[❯](purple)" +error_symbol = "[❯](red)" +vimcmd_symbol = "[❮](green)" + +[git_branch] +format = "[$branch]($style)" +style = "bright-black" + +[git_status] +format = "[[(*$conflicted$untracked$modified$staged$renamed$deleted)](218) ($ahead_behind$stashed)]($style)" +style = "cyan" +conflicted = "​" +untracked = "​" +modified = "​" +staged = "​" +renamed = "​" +deleted = "​" +stashed = "≡" + +[git_state] +format = '\([$state( $progress_current/$progress_total)]($style)\) ' +style = "bright-black" + +[elixir] +symbol = "△ " +format = " exs [$symbol $version OTP $otp_version ]($style)" + + +[lua] +format = "[lua ${symbol}${version}]($style)" +version_format = "${raw}" +symbol = "⨀ " +style = "bold bright-yellow" + +[time] +disabled = false +format = "[ $time]($style)" +time_format = "%R" +utc_time_offset = "local" +style = "bold" + +[cmd_duration] +format = "[$duration]($style) " +style = "yellow" + +[python] +format = "[$virtualenv]($style) " +style = "bright-black"