Something something.

This commit is contained in:
CronyAkatsuki 2024-03-16 13:13:51 +01:00
parent 781464fe74
commit 07e1aca304

View File

@ -52,14 +52,16 @@
extraConfigLuaPost = ''
vim.notify = require("mini.notify").make_notify()
'';
extraPackages = with pkgs; [ stylua isort black nixfmt ];
extraPackages = with pkgs; [ stylua isort black nixfmt jq shfmt ];
plugins = {
conform-nvim = {
enable = true;
formattersByFt = {
json = [ "jq" ];
lua = [ "stylua" ];
python = [ "isort" "black" ];
nix = [ "nixfmt" ];
sh = [ "shfmt" ];
};
};
lint = {