From a8085162d13ae8d415064b37aaaa3c393d09b229 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Reyrol?= Date: Sat, 19 Aug 2023 11:41:35 +0200 Subject: [PATCH] wip --- flake.lock | 6 +++--- users/gael/configuration.nix | 28 +++++++++++++++++++++++++--- 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 0276385..f4a59f2 100644 --- a/flake.lock +++ b/flake.lock @@ -253,11 +253,11 @@ ] }, "locked": { - "lastModified": 1685873524, - "narHash": "sha256-SuZW20AVN4h++akvnM8v9NlCqcRfdphjYUnUkGCgjzA=", + "lastModified": 1692191366, + "narHash": "sha256-WmEMwDFENSrGpmdYaUQ5/OTatcw3uBthY+Uq2nom8FE=", "owner": "nix-community", "repo": "nixvim", - "rev": "cae34a7b8f83293b21c1c0981ba810883719dfe0", + "rev": "ac21d4d85ea28fd877aa5c9676a53fe95979621d", "type": "github" }, "original": { diff --git a/users/gael/configuration.nix b/users/gael/configuration.nix index 408253f..b11bd1a 100644 --- a/users/gael/configuration.nix +++ b/users/gael/configuration.nix @@ -45,11 +45,33 @@ programs.nixvim = { enable = true; + + colorscheme = "solarized"; + + plugins = { + cmp-treesitter.enable = true; + # dap.enable = true; + # diffview.enable = true; + gitsigns.enable = true; + indent-blankline.enable = true; + lsp.enable = true; + neo-tree.enable = true; + nix.enable = true; + telescope.enable = true; + treesitter.enable = true; + # trouble.enable = true; in error + which-key.enable = true; + }; + extraPlugins = with pkgs.vimPlugins; [ - vim-nix + heirline-nvim + nvim-autopairs solarized-nvim - ]; + vim-hardtime - colorscheme = "solarized"; + # not available in nixvim/nixos-23.05 + nvim-dap + diffview-nvim + ]; }; }