aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/base
diff options
context:
space:
mode:
Diffstat (limited to 'home/profiles/base')
-rw-r--r--home/profiles/base/default.nix26
1 files changed, 25 insertions, 1 deletions
diff --git a/home/profiles/base/default.nix b/home/profiles/base/default.nix
index dd32330..368bbe9 100644
--- a/home/profiles/base/default.nix
+++ b/home/profiles/base/default.nix
@@ -74,7 +74,31 @@ in
helix = {
enable = true;
settings = {
- theme = "base16_default_dark";
+ theme = "rasmus";
+
+ editor = {
+ statusline = {
+ left = [ "mode" "spinner" "file-name" "position" "separator" "spacer" "diagnostics" "file-modification-indicator" ];
+ center = [ "version-control" ];
+ right = [ "selections" "file-encoding" "file-line-ending" "file-type" ];
+ mode.normal = "NORMAL";
+ mode.insert = "INSERT";
+ mode.select = "SELECT";
+ };
+
+ cursor-shape = {
+ insert = "bar";
+ normal = "block";
+ select = "underline";
+ };
+
+ lsp = {
+ display-inlay-hints = true;
+ };
+
+ color-modes = true;
+ bufferline = "multiple";
+ };
};
};