aboutsummaryrefslogtreecommitdiffstats
path: root/home-manager/soispha/config/neovim/nixvim/options
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-19 18:26:14 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 18:26:14 +0200
commit7b93175c717675985e4bbd167853c065b0fe1f26 (patch)
treee8dbed676cb8d899f33492bdf2f1c42e95b8454d /home-manager/soispha/config/neovim/nixvim/options
parentFix(hm/conf/neovim/options): Turn wildmode option into a string (diff)
downloadnixos-config-7b93175c717675985e4bbd167853c065b0fe1f26.zip
Fix(hm/conf/neovim/options): Separate 'listchars' option with commas
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim/options')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/options/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/options/default.nix b/home-manager/soispha/config/neovim/nixvim/options/default.nix
index 473d475b..87abdffb 100644
--- a/home-manager/soispha/config/neovim/nixvim/options/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/options/default.nix
@@ -31,13 +31,13 @@
vertright = "┣"; # BOX DRAWINGS HEAVY VERTICAL AND RIGHT (U+2523, UTF-8: E2 94 A3)
verthoriz = "╋"; # BOX DRAWINGS HEAVY VERTICAL AND HORIZONTAL (U+254B, UTF-8: E2 95 8B)
};
- listchars =
- ""
- + "nbsp:⦸" # CIRCLED REVERSE SOLIDUS (U+29B8, UTF-8: E2 A6 B8)
- + "tab:▷┅" # WHITE RIGHT-POINTING TRIANGLE (U+25B7, UTF-8: E2 96 B7)
- + "extends:»" # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK (U+00BB, UTF-8: C2 BB)
- + "precedes:«" # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK (U+00AB, UTF-8: C2 AB)
- + "trail:•"; # BULLET (U+2022, UTF-8: E2 80 A2)
+ listchars = builtins.concatStringsSep "," [
+ "nbsp:⦸" # CIRCLED REVERSE SOLIDUS (U+29B8, UTF-8: E2 A6 B8)
+ "tab:▷┅" # WHITE RIGHT-POINTING TRIANGLE (U+25B7, UTF-8: E2 96 B7)
+ "extends:»" # RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK (U+00BB, UTF-8: C2 BB)
+ "precedes:«" # LEFT-POINTING DOUBLE ANGLE QUOTATION MARK (U+00AB, UTF-8: C2 AB)
+ "trail:•" # BULLET (U+2022, UTF-8: E2 80 A2)
+ ];
# shell-like autocomplete to unambiguous portions
wildmode = builtins.concatStringsSep "," [