add dml and writegood

This commit is contained in:
DanRoscigno 2023-06-30 22:17:14 -04:00
parent c604d1f533
commit b0c1bee8c4
2 changed files with 17 additions and 1 deletions

View File

@ -1,3 +1,19 @@
# my edits
Install vale from https://vale.sh
```bash
cd ~/Downloads/vale_2.27.0_Linux_64-bit
sudo mv vale /usr/local/bin/
```
Install mdl and write-good
```bash
gem install mdl
npm install -g write-good
```
# kickstart.nvim
### Introduction

View File

@ -21,7 +21,7 @@ g.ale_linters = {
javascript = {'standard'},
lua = { "selene" },
json = { "jsonlint" },
markdown = { "vale" },
markdown = { "vale", "mdl", "writegood" },
yaml = { "yamllint" },
}