diff options
author | Liam <[email protected]> | 2022-08-19 02:53:38 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2022-08-19 11:53:38 +0200 |
commit | e13c465d5178cf3d20530c70261b1e5f6f10e4e4 (patch) | |
tree | 22f90749b97de044baba8551e3c7ecbaecf205af /README.md | |
parent | d259efd40b2ebab57ff364da565e280981fec410 (diff) |
docs: fix some typos and enhance readability (#2917)
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -39,7 +39,7 @@ bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/ To run the install script without any interaction you can pass the `-y` flag to automatically install all dependencies and have no prompts. This is particularly useful in automated installations. -The same way, you can use `--no-install-dependencies` to skip the dependency installation. +In the same way, you can use `--no-install-dependencies` to skip the dependency installation. ### Windows (Powershell 7+): @@ -51,7 +51,7 @@ Invoke-WebRequest https://raw.githubusercontent.com/LunarVim/LunarVim/master/uti ## Automatic LSP support -By default, most supported language servers will get automatically installed once you open the supported file-type, e.g, opening a Python file for the first time will install `Pyright` and configure it automatically for you. +By default, most supported language servers will get automatically installed once you open the supported file type, e.g, opening a Python file for the first time will install `Pyright` and configure it automatically for you. ## Configuration file @@ -99,7 +99,7 @@ formatters.setup { { command = "black" }, { command = "prettier", - ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports. + ---@usage specify which filetypes to enable. By default, providers will attach to all the filetypes it supports. filetypes = { "typescript", "typescriptreact" }, }, } @@ -109,7 +109,7 @@ local linters = require "lvim.lsp.null-ls.linters" linters.setup { { command = "eslint_d", - ---@usage specify which filetypes to enable. By default a providers will attach to all the filetypes it supports. + ---@usage specify which filetypes to enable. By default, providers will attach to all the filetypes it supports. filetypes = { "javascript", "javascriptreact" }, }, } |