diff --git a/flake.lock b/flake.lock index bd1e811..5381c49 100644 --- a/flake.lock +++ b/flake.lock @@ -28,11 +28,11 @@ "utils": "utils" }, "locked": { - "lastModified": 1666903647, - "narHash": "sha256-sFI1Gh9DTGzHnBINondupUGYbe+T0wZcpcZjkW0qffM=", + "lastModified": 1666990295, + "narHash": "sha256-JPMTX8W36IPV1jmKV1qEhNBI4MbIPYsnccWyTUlSiG0=", "owner": "nix-community", "repo": "home-manager", - "rev": "213a06295dff96668a1d673b9fd1c03ce1de6745", + "rev": "423211401c245934db5052e3867cac704f658544", "type": "github" }, "original": { diff --git a/home/default.nix b/home/default.nix index f7d6bee..a040c02 100644 --- a/home/default.nix +++ b/home/default.nix @@ -370,7 +370,6 @@ in { cmp-path cmp-treesitter diffview-nvim - friendly-snippets gitlinker-nvim gitsigns-nvim gruvbox-nvim @@ -379,9 +378,7 @@ in { nvim-cmp nvim-lspconfig nvim-tree-lua - /* - nvim-treesitter installed with packer for now - */ + nvim-treesitter nvim-ts-rainbow nvim-web-devicons packer-nvim diff --git a/home/nvim/lua/init.lua b/home/nvim/lua/init.lua index 4c34c1e..807cd15 100644 --- a/home/nvim/lua/init.lua +++ b/home/nvim/lua/init.lua @@ -113,8 +113,7 @@ vim.api.nvim_set_keymap("n", "", "za", { silent = true, noremap = true }) -- packer {{{1 ------------------------------------------------------------------- ------------------------------------------------------------------------------- require("packer").startup(function() - -- use({ "ms-jpq/coq.artifacts", branch = "artifacts" }) - use({ "nvim-treesitter/nvim-treesitter" }) + -- use({ "nvim-treesitter/nvim-treesitter" }) end) -------------------------------------------------------------------------------