diff options
Diffstat (limited to 'home/neovim/default.nix')
-rw-r--r-- | home/neovim/default.nix | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/home/neovim/default.nix b/home/neovim/default.nix index ccf6dc5..4d49854 100644 --- a/home/neovim/default.nix +++ b/home/neovim/default.nix @@ -1,15 +1,15 @@ # This file contains the HM configuration options for Neovim. - -{ pkgs, lib, ... }: - { - imports = - [ - ./lsp.nix - ./filetype.nix - ./completion.nix - ./plugins.nix - ]; + pkgs, + lib, + ... +}: { + imports = [ + ./lsp.nix + ./filetype.nix + ./completion.nix + ./plugins.nix + ]; programs.neovim = { enable = true; |