diff options
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | fnl/plugins/lsp/servers.fnl | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -17,3 +17,8 @@ neovim = nightly │ └── lsp # LSP related configs. └── settings # Neovim settings. ``` + +## Vale + +1. Create a `.vale.ini` file in the project +2. Run `vale sync` with the vale located in `mason/packages/vale` diff --git a/fnl/plugins/lsp/servers.fnl b/fnl/plugins/lsp/servers.fnl index 6aff0bd..d5a47fb 100644 --- a/fnl/plugins/lsp/servers.fnl +++ b/fnl/plugins/lsp/servers.fnl @@ -23,4 +23,5 @@ :path (vim.split package.path ";")}}}} :taplo {} :texlab {} + :vale_ls {:filetypes [:markdown :text :org]} :yamlls {}} |