Skip to content

Commit

Permalink
fix(nvim): Use checked file paths instead of strings
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Aug 15, 2023
1 parent 2d14a56 commit 700db89
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions home-manager/modules/nvim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ in {
'';
"cbfmt.toml".text = ''
[languages]
rust = ["rustfmt"]
go = ["gofmt"]
lua = ["stylua --config-path ${
config.lib.file.mkOutOfStoreSymlink ../../nvim/stylua.toml
rust = ["${pkgs.rustfmt}/bin/rustfmt"]
go = ["${pkgs.go}/bin/gofmt"]
lua = ["${pkgs.stylua}/bin/stylua --config-path ${
../../nvim/stylua.toml
} -s -"]
nix = ["nixfmt"]
nix = ["${pkgs.nixfmt}/bin/nixfmt"]
'';
"ripgrep_ignore".text = ''
.git/
Expand Down

0 comments on commit 700db89

Please sign in to comment.