1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 19:46:06 +01:00

plugins/lint: fix conform incorrect option description

This commit is contained in:
elythh 2024-08-26 20:34:41 +02:00
parent aa1f5a74ff
commit 665680a5ca

View file

@ -97,7 +97,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config {
```nix
# Map of filetype to formatters
formattersByFt =
formatters_by_ft =
{
lua = [ "stylua" ];
# Conform will run multiple formatters sequentially
@ -165,7 +165,7 @@ lib.nixvim.neovim-plugin.mkNeovimPlugin config {
settingsExample = lib.literalMD ''
```nix
{
formattersByFt = {
formatters_by_ft = {
bash = [
"shellcheck"
"shellharden"