Compare commits
5 commits
3fbe570a30
...
fed5136bc7
Author | SHA1 | Date | |
---|---|---|---|
fed5136bc7 | |||
4003ec5937 | |||
e677b76044 | |||
d520ce7d8a | |||
c949dbf477 |
2 changed files with 26 additions and 0 deletions
20
flake.nix
20
flake.nix
|
@ -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
|
||||||
|
|
6
init.lua
6
init.lua
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue