Ver código fonte

nord theme for nvim

Zander Hawke 1 ano atrás
pai
commit
36c3d3cfaa
1 arquivos alterados com 1 adições e 2 exclusões
  1. 1 2
      home/features/nvim/default.nix

+ 1 - 2
home/features/nvim/default.nix

@@ -10,8 +10,6 @@ let
       defaultEditor = true;
       vimdiffAlias = true;
 
-      colorscheme = "nord";
-
       extraPlugins = with pkgs; [
         (vimUtils.buildVimPlugin rec {
           pname = "nord.nvim";
@@ -30,6 +28,7 @@ let
         require("nord").setup({
           transparent = true,
         })
+        vim.cmd.colorscheme("nord")
       '';
     })