summaryrefslogtreecommitdiff
path: root/users/seth/programs
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-11 23:41:34 -0500
committerseth <[email protected]>2023-03-11 23:41:34 -0500
commitaa2b604ce7f5b48b960763c88dc48b97de19087d (patch)
tree432450676bc1c2acdc83ce949b2cfbe598bafb59 /users/seth/programs
parenta2cf60a228ed725a4a2210bbdc5ccdad5c631137 (diff)
enable starship
Diffstat (limited to 'users/seth/programs')
-rw-r--r--users/seth/programs/default.nix1
-rw-r--r--users/seth/programs/starship.nix29
2 files changed, 0 insertions, 30 deletions
diff --git a/users/seth/programs/default.nix b/users/seth/programs/default.nix
index d3802f5..79b1a69 100644
--- a/users/seth/programs/default.nix
+++ b/users/seth/programs/default.nix
@@ -2,7 +2,6 @@
imports = [
./git.nix
./neovim.nix
- ./starship.nix
./vim.nix
];
diff --git a/users/seth/programs/starship.nix b/users/seth/programs/starship.nix
deleted file mode 100644
index 7c213cf..0000000
--- a/users/seth/programs/starship.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-_: {
- programs.starship = {
- enable = false;
- settings = {
- format = "" "
- $username\
- $hostname\
- $directory\
- $vcsh\
- $git_branch\
- $git_commit\
- $git_state\
- $git_metrics\
- $git_status\
- $docker_context\
- $nix_shell\
- $env_var\
- $sudo\
- $cmd_duration\
- $line_break\
- $jobs\
- $status\
- $container\
- $shell\
- $character
- " "";
- };
- };
-}