Compare commits

...

5 commits

Author SHA1 Message Date
fed5136bc7
feat: extras.util.rest 2025-03-11 20:06:21 -07:00
4003ec5937
feat: extras.util.project 2025-03-11 19:33:58 -07:00
e677b76044
feat: extras.util.octo 2025-03-11 19:31:11 -07:00
d520ce7d8a
feat: extras.util.mini-hipatterns 2025-03-11 19:28:44 -07:00
c949dbf477
feat: extras.util.dot 2025-03-11 19:26:15 -07:00
2 changed files with 26 additions and 0 deletions

View file

@ -105,6 +105,7 @@
(callPackage ./packages/erb-lint {}) (callPackage ./packages/erb-lint {})
(callPackage ./packages/markdown-toc {}) (callPackage ./packages/markdown-toc {})
alejandra alejandra
bash-language-server
biome biome
curl curl
docker-compose-language-service docker-compose-language-service
@ -113,8 +114,10 @@
gofumpt gofumpt
gopls gopls
gotools gotools
grpcurl
hadolint hadolint
helm-ls helm-ls
jq
lazygit lazygit
lua-language-server lua-language-server
markdownlint-cli2 markdownlint-cli2
@ -131,6 +134,7 @@
ruby-lsp ruby-lsp
rubyPackages.erb-formatter rubyPackages.erb-formatter
ruff ruff
shellcheck
sqlfluff sqlfluff
stdenv.cc.cc stdenv.cc.cc
stylelint stylelint
@ -301,6 +305,22 @@
# Treesitter-context # Treesitter-context
nvim-treesitter-context nvim-treesitter-context
# Util
# Mini Hipatterns
{
plugin = mini-hipatterns;
name = "mini.hipatterns";
}
# Octo
octo-nvim
# Project
project-nvim
# Rest
kulala-nvim
# Custom # Custom
rose-pine rose-pine
diffview-nvim diffview-nvim

View file

@ -81,6 +81,12 @@ require('nixCatsUtils.lazyCat').setup(nixCats.pawsible { 'allPlugins', 'start',
{ import = 'lazyvim.plugins.extras.ui.mini-animate' }, { import = 'lazyvim.plugins.extras.ui.mini-animate' },
{ import = 'lazyvim.plugins.extras.ui.treesitter-context' }, { import = 'lazyvim.plugins.extras.ui.treesitter-context' },
{ import = 'lazyvim.plugins.extras.util.dot' },
{ import = 'lazyvim.plugins.extras.util.mini-hipatterns' },
{ import = 'lazyvim.plugins.extras.util.octo' },
{ import = 'lazyvim.plugins.extras.util.project' },
{ import = 'lazyvim.plugins.extras.util.rest' },
-- These need to be after extras to prevent extras from overwriting them. -- These need to be after extras to prevent extras from overwriting them.
-- Disable mason.nvim while using nix. -- Disable mason.nvim while using nix.