Skip to content

Commit

Permalink
feat(nvim): up plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed May 19, 2024
1 parent 3f570cd commit 70fdd26
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .config/nix/modules/home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,16 @@
};
};
programs.eza.enable = true;
programs.gh.enable = true;
programs.gh = {
enable = true;
extensions = with pkgs; [
gh-dash
gh-poi
];
};
programs.gh-dash = {
enable = true;
};
programs.home-manager.enable = true;

xdg = {
Expand Down
2 changes: 2 additions & 0 deletions .config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,8 @@ require("lazy").setup({
},
},
config = function()
-- Replace with builtin commenting
-- https://gpanders.com/blog/whats-new-in-neovim-0.10/#builtin-commenting
require("mini.comment").setup({
options = {
custom_commentstring = function()
Expand Down
2 changes: 1 addition & 1 deletion .config/nvim/lazy-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"popup.nvim": { "branch": "master", "commit": "b7404d35d5d3548a82149238289fa71f7f6de4ac" },
"promise-async": { "branch": "main", "commit": "93540c168c5ed2b030ec3e6c40ab8bbb85e36355" },
"rust-tools.nvim": { "branch": "master", "commit": "676187908a1ce35ffcd727c654ed68d851299d3e" },
"telescope.nvim": { "branch": "master", "commit": "9cf58f438f95f04cf1709b734bbcb9243c262d70" },
"telescope.nvim": { "branch": "master", "commit": "0c12735d5aff6a48ffd8111bf144dc2ff44e5975" },
"trouble.nvim": { "branch": "main", "commit": "f1168feada93c0154ede4d1fe9183bf69bac54ea" },
"twoslash-queries.nvim": { "branch": "main", "commit": "ea2dd86618d3aa4e176bfafc31cab2b1d1feb157" },
"vim-illuminate": { "branch": "master", "commit": "3bd2ab64b5d63b29e05691e624927e5ebbf0fb86" },
Expand Down

0 comments on commit 70fdd26

Please sign in to comment.