Compare commits
3 commits
f0a1b294e9
...
0a5c8fb475
Author | SHA1 | Date | |
---|---|---|---|
0a5c8fb475 | |||
fd41fbaf5b | |||
9301482cda |
5 changed files with 59 additions and 24 deletions
59
flake.nix
59
flake.nix
|
@ -56,11 +56,11 @@
|
|||
|
||||
categoryDefinitions = {
|
||||
pkgs,
|
||||
settings,
|
||||
categories,
|
||||
extra,
|
||||
# settings,
|
||||
# categories,
|
||||
# extra,
|
||||
name,
|
||||
mkNvimPlugin,
|
||||
# mkNvimPlugin,
|
||||
...
|
||||
}: {
|
||||
lspsAndRuntimeDeps = with pkgs; let
|
||||
|
@ -76,8 +76,12 @@
|
|||
biome
|
||||
codespell
|
||||
curl
|
||||
deadnix
|
||||
djlint
|
||||
docker-compose-language-service
|
||||
dockerfile-language-server-nodejs
|
||||
dotenv-linter
|
||||
editorconfig-checker
|
||||
emmet-language-server
|
||||
fd
|
||||
fish-lsp
|
||||
|
@ -87,12 +91,14 @@
|
|||
grpcurl
|
||||
hadolint
|
||||
helm-ls
|
||||
htmlhint
|
||||
jq
|
||||
lazygit
|
||||
lua-language-server
|
||||
markdownlint-cli2
|
||||
marksman
|
||||
nil
|
||||
nodePackages.alex
|
||||
nodePackages.prettier
|
||||
npm-modules.css-variables-language-server
|
||||
npm-modules.gh-actions-language-server
|
||||
|
@ -126,6 +132,7 @@
|
|||
vue-language-server
|
||||
yaml-language-server
|
||||
yamllint
|
||||
zizmor
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -271,6 +278,9 @@
|
|||
nvim-nio
|
||||
|
||||
# UI
|
||||
# edgy.nvim
|
||||
edgy-nvim
|
||||
|
||||
# Mini Animate
|
||||
{
|
||||
plugin = mini-animate;
|
||||
|
@ -342,7 +352,7 @@
|
|||
packageDefinitions = {
|
||||
nvim = {
|
||||
pkgs,
|
||||
mkNvimPlugin,
|
||||
# mkNvimPlugin,
|
||||
...
|
||||
}: {
|
||||
settings = {
|
||||
|
@ -385,25 +395,28 @@
|
|||
devShells.default = devenv.lib.mkShell {
|
||||
inherit inputs pkgs;
|
||||
modules = [
|
||||
({
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
packages = [
|
||||
defaultPackage
|
||||
];
|
||||
(
|
||||
# {
|
||||
# pkgs,
|
||||
# config,
|
||||
# ...
|
||||
# }:
|
||||
_: {
|
||||
packages = [
|
||||
defaultPackage
|
||||
];
|
||||
|
||||
pre-commit.hooks = {
|
||||
alejandra.enable = true;
|
||||
deadnix.enable = true;
|
||||
statix.enable = true;
|
||||
stylua.enable = true;
|
||||
end-of-file-fixer.enable = true;
|
||||
trim-trailing-whitespace.enable = true;
|
||||
no-commit-to-branch.enable = true;
|
||||
};
|
||||
})
|
||||
pre-commit.hooks = {
|
||||
alejandra.enable = true;
|
||||
deadnix.enable = true;
|
||||
statix.enable = true;
|
||||
stylua.enable = true;
|
||||
end-of-file-fixer.enable = true;
|
||||
trim-trailing-whitespace.enable = true;
|
||||
no-commit-to-branch.enable = true;
|
||||
};
|
||||
}
|
||||
)
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
1
init.lua
1
init.lua
|
@ -76,6 +76,7 @@ require('nixCatsUtils.lazyCat').setup(
|
|||
|
||||
{ import = 'lazyvim.plugins.extras.test.core' },
|
||||
|
||||
{ import = 'lazyvim.plugins.extras.ui.edgy' },
|
||||
{ import = 'lazyvim.plugins.extras.ui.mini-animate' },
|
||||
{ import = 'lazyvim.plugins.extras.ui.treesitter-context' },
|
||||
|
||||
|
|
|
@ -2,3 +2,10 @@ vim.o.textwidth = 80
|
|||
vim.o.colorcolumn = '+1'
|
||||
|
||||
vim.g.lazyvim_prettier_needs_config = true
|
||||
|
||||
vim.filetype.add({
|
||||
pattern = {
|
||||
['%.env%.[%w_.-]+'] = 'sh.env',
|
||||
['.*/.github/workflows/.*%.yml'] = 'yaml.ghaction',
|
||||
},
|
||||
})
|
||||
|
|
|
@ -3,12 +3,23 @@ return {
|
|||
'mfussenegger/nvim-lint',
|
||||
opts = {
|
||||
linters_by_ft = {
|
||||
['*'] = { 'codespell' },
|
||||
['*'] = { 'codespell', 'editorconfig-checker', 'alex' },
|
||||
bash = { 'shellcheck' },
|
||||
css = { 'stylelint' },
|
||||
django = { 'djlint' },
|
||||
env = { 'dotenv-linter' },
|
||||
ghaction = { 'zizmor' },
|
||||
handlebars = { 'djlint' },
|
||||
html = { 'htmlhint' },
|
||||
jinja = { 'djlint' },
|
||||
mustache = { 'djlint' },
|
||||
nix = { 'deadnix', 'statix' },
|
||||
nunjucks = { 'djlint' },
|
||||
scss = { 'stylelint' },
|
||||
sh = { 'shellcheck' },
|
||||
twig = { 'djlint' },
|
||||
yaml = { 'yamllint' },
|
||||
zsh = { 'zsh' },
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
3
statix.toml
Normal file
3
statix.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
disabled = []
|
||||
nix_version = '2.4'
|
||||
ignore = ['.devenv', 'packages/npm-modules']
|
Loading…
Reference in a new issue