From db5dd9a8f054b8fab32624fc766077a348c6368f Mon Sep 17 00:00:00 2001 From: Hiroki Sakuraba Date: Fri, 7 Jul 2023 18:07:08 +0900 Subject: [PATCH] Update --- flake.lock | 32 ++++++--------------- home/features/neovim/lua/plugins/coding.lua | 13 +++++++++ home/features/neovim/lua/plugins/lsp.lua | 6 ++++ 3 files changed, 28 insertions(+), 23 deletions(-) diff --git a/flake.lock b/flake.lock index 192d9eff..ca28f959 100644 --- a/flake.lock +++ b/flake.lock @@ -128,7 +128,9 @@ "inputs": { "flake-compat": "flake-compat", "nix": "nix", - "nixpkgs": "nixpkgs", + "nixpkgs": [ + "nixpkgs" + ], "pre-commit-hooks": "pre-commit-hooks" }, "locked": { @@ -400,7 +402,7 @@ "hyprland": { "inputs": { "hyprland-protocols": "hyprland-protocols", - "nixpkgs": "nixpkgs_2", + "nixpkgs": "nixpkgs", "wlroots": "wlroots", "xdph": "xdph" }, @@ -534,16 +536,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1687793116, - "narHash": "sha256-6xRgZ2E9r/BNam87vMkHJ/0EPTTKzeNwhw3abKilEE4=", + "lastModified": 1686592866, + "narHash": "sha256-riGg89eWhXJcPNrQGcSwTEEm7CGxWC06oSX44hajeMw=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9e4e0807d2142d17f463b26a8b796b3fe20a3011", + "rev": "0eeebd64de89e4163f4d3cf34ffe925a5cf67a05", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-unstable", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } @@ -597,22 +599,6 @@ } }, "nixpkgs_2": { - "locked": { - "lastModified": 1686592866, - "narHash": "sha256-riGg89eWhXJcPNrQGcSwTEEm7CGxWC06oSX44hajeMw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0eeebd64de89e4163f4d3cf34ffe925a5cf67a05", - "type": "github" - }, - "original": { - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", - "type": "github" - } - }, - "nixpkgs_3": { "locked": { "lastModified": 1687412861, "narHash": "sha256-Z/g0wbL68C+mSGerYS2quv9FXQ1RRP082cAC0Bh4vcs=", @@ -703,7 +689,7 @@ "impermanence": "impermanence", "neovim": "neovim", "nixos-hardware": "nixos-hardware", - "nixpkgs": "nixpkgs_3", + "nixpkgs": "nixpkgs_2", "pre-commit-hooks": "pre-commit-hooks_2" } }, diff --git a/home/features/neovim/lua/plugins/coding.lua b/home/features/neovim/lua/plugins/coding.lua index 99f542ac..23c1f6f6 100644 --- a/home/features/neovim/lua/plugins/coding.lua +++ b/home/features/neovim/lua/plugins/coding.lua @@ -213,4 +213,17 @@ return { }, }, }, + { + "stevearc/overseer.nvim", + event = "VeryLazy", + opts = {}, + }, + { + "zbirenbaum/copilot.lua", + event = "VeryLazy", + cmd = "Copilot", + config = function() + require("copilot").setup({}) + end, + }, } diff --git a/home/features/neovim/lua/plugins/lsp.lua b/home/features/neovim/lua/plugins/lsp.lua index 7e15c64b..2bd4aa7f 100644 --- a/home/features/neovim/lua/plugins/lsp.lua +++ b/home/features/neovim/lua/plugins/lsp.lua @@ -257,4 +257,10 @@ return { }, }, }, + { + "pmizio/typescript-tools.nvim", + dependencies = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" }, + event = "VeryLazy", + opts = {}, + }, }