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 = '' extraConfigLuaPost = ''
vim.notify = require("mini.notify").make_notify() vim.notify = require("mini.notify").make_notify()
''; '';
extraPackages = with pkgs; [ stylua isort black nixfmt ]; extraPackages = with pkgs; [ stylua isort black nixfmt jq shfmt ];
plugins = { plugins = {
conform-nvim = { conform-nvim = {
enable = true; enable = true;
formattersByFt = { formattersByFt = {
json = [ "jq" ];
lua = [ "stylua" ]; lua = [ "stylua" ];
python = [ "isort" "black" ]; python = [ "isort" "black" ];
nix = [ "nixfmt" ]; nix = [ "nixfmt" ];
sh = [ "shfmt" ];
}; };
}; };
lint = { lint = {