about summary refs log tree commit diff stats
path: root/modules/by-name/nv/nvim/plgs/neorg/default.nix
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-23 14:06:11 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-23 14:06:11 +0100
commit86419e7daae935a5d7d3f501e7b124a794d3528d (patch)
tree4c9a48908cb61c728ed79479187d8fb55770c573 /modules/by-name/nv/nvim/plgs/neorg/default.nix
parentfix(modules/nvim/plgs/lsp/ruff): Replace deprecated ruff_lsp with ruff (diff)
downloadnixos-config-86419e7daae935a5d7d3f501e7b124a794d3528d.tar.gz
nixos-config-86419e7daae935a5d7d3f501e7b124a794d3528d.zip
fix(modules/nvim/plgs/neorg): Use the correct ft name in ftplugin
The neorg filetype is named `norg` not `neorg`.
Diffstat (limited to 'modules/by-name/nv/nvim/plgs/neorg/default.nix')
-rw-r--r--modules/by-name/nv/nvim/plgs/neorg/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/by-name/nv/nvim/plgs/neorg/default.nix b/modules/by-name/nv/nvim/plgs/neorg/default.nix
index 67c18cc6..41c80673 100644
--- a/modules/by-name/nv/nvim/plgs/neorg/default.nix
+++ b/modules/by-name/nv/nvim/plgs/neorg/default.nix
@@ -7,7 +7,7 @@
 in {
   home-manager.users.soispha.programs.nixvim = lib.mkIf cfg.enable {
     extraFiles = {
-      "ftplugin/neorg.lua".text = ''
+      "ftplugin/norg.lua".text = ''
         ${lib.strings.fileContents ./key_mappings.lua}
       '';
     };