about summary refs log tree commit diff stats
path: root/home-manager
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-08-19 21:30:22 +0200
committerSoispha <soispha@vhack.eu>2023-08-19 21:30:22 +0200
commitf01e4a2628a9356bd930b3d644665edabfaac74b (patch)
tree4f53700e5ad54fa61ad6f54bf7a1fb3970b09499 /home-manager
parentFix(hm/conf/neovim/plugins/lualine): Use anynomys functions (diff)
downloadnixos-config-f01e4a2628a9356bd930b3d644665edabfaac74b.tar.gz
nixos-config-f01e4a2628a9356bd930b3d644665edabfaac74b.zip
Fix(hm/conf/neovim/plugins/lualine): Correctly qoute string
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
index 12723cc1..8415a2e8 100644
--- a/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
+++ b/home-manager/soispha/config/neovim/nixvim/plugins/lualine/default.nix
@@ -31,7 +31,7 @@
                 mixed_same_line = vim.fn.search([[\v^(\t+ | +\t)]], 'nwc')
                 mixed = mixed_same_line > 0
             end
-            if not mixed then return \'\' end
+            if not mixed then return "" end
             if mixed_same_line ~= nil and mixed_same_line > 0 then
                 return 'MI:' .. mixed_same_line
             end