summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md24
1 files changed, 16 insertions, 8 deletions
diff --git a/README.md b/README.md
index 1934ef30..5450a530 100644
--- a/README.md
+++ b/README.md
@@ -90,11 +90,24 @@ lvim.builtin.treesitter.ensure_installed = "maintained"
lvim.builtin.treesitter.ignore_install = { "haskell" }
lvim.builtin.treesitter.highlight.enabled = true
-lvim.lang.python.formatter.exe = "black"
-lvim.lang.python.linters = ""
-
lvim.lsp.diagnostics.virtual_text = false
+-- set a formatter if you want to override the default lsp one (if it exists)
+lvim.lang.python.formatters = {
+ {
+ exe = "black",
+ args = {}
+ }
+}
+-- set an additional linter
+lvim.lang.python.linters = {
+ {
+ exe = "flake8",
+ args = {}
+ }
+}
+
+
-- Additional Plugins
lvim.plugins = {
{"lunarvim/colorschemes"},
@@ -145,11 +158,6 @@ To update plugins:
To update LunarVim:
```bash
-# Master Branch
-cd ~/.config/nvim && git pull
-:PackerSync
-
-# Rolling Branch
cd ~/.local/share/lunarvim/lvim && git pull
:PackerSync
```