mirror of
https://github.com/Dichgrem/DCGOS.git
synced 2025-12-17 03:31:59 -05:00
feat:add_nixvim
This commit is contained in:
16
home/nixvim/plugins/lang/shell.nix
Normal file
16
home/nixvim/plugins/lang/shell.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{pkgs, ...}: {
|
||||
plugins = {
|
||||
conform-nvim.settings = {
|
||||
formatters_by_ft = {
|
||||
sh = ["shfmt"];
|
||||
};
|
||||
formatters = {
|
||||
shfmt = {
|
||||
command = "${pkgs.shfmt}/bin/shfmt";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
lsp.servers.bashls.enable = true;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user