fix nixd encoding

This commit is contained in:
Hadi
2024-11-25 10:24:53 +01:00
parent b991c66c2e
commit ea3d436c6e

View File

@@ -9,7 +9,11 @@
gopls.enable = true; gopls.enable = true;
nixd = { nixd = {
enable = true; enable = true;
extraOptions = { expr = "import <nixpkgs> {}"; }; extraOptions = {
expr = "import <nixpkgs> {}";
# FIX: Encoding: https://github.com/nix-community/nixvim/issues/2390
offset_encoding = "utf-8";
};
}; };
tailwindcss.enable = true; tailwindcss.enable = true;
html.enable = true; html.enable = true;