summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrebuilt <[email protected]>2021-07-08 09:34:43 +0200
committerGitHub <[email protected]>2021-07-08 09:34:43 +0200
commitd4a08654e532997d4214d64dd540fa4efcf0e7d2 (patch)
treed41485bd49044fcc19a69230e9935b2cf6ffc054
parentb037e1a9c46fd6bddfea0e709eba828ed2717269 (diff)
parente2d9944c244546923798a08add611c3028d46a20 (diff)
Merge pull request #778 from abzcoding/readme-update
Updated readme to remove dead options and add new ones
-rw-r--r--README.md23
1 files changed, 16 insertions, 7 deletions
diff --git a/README.md b/README.md
index 972dd70b..16561ed0 100644
--- a/README.md
+++ b/README.md
@@ -52,12 +52,12 @@ O.timeoutlen = 100
O.leader_key = ' '
-- After changing plugin config it is recommended to run :PackerCompile
-O.plugin.hop.active = true
O.plugin.colorizer.active = true
+O.plugin.dashboard.active = true
+O.plugin.floatterm.active = true
+O.plugin.symbol_outline = true
O.plugin.trouble.active = true
-O.plugin.lazygit.active = true
O.plugin.zen.active = true
-O.plugin.markdown_preview.active = true
-- if you don't want all the parsers change this to a table of the ones you want
O.treesitter.ensure_installed = "all"
@@ -73,11 +73,20 @@ O.lang.tsserver.formatter = 'prettier'
O.lang.tsserver.linter = nil
O.lang.tsserver.autoformat = true
--- json
-O.lang.json.autoformat = true
+-- python
+-- O.python.linter = 'flake8'
+O.lang.python.isort = true
+O.lang.python.diagnostics.virtual_text = true
+O.lang.python.analysis.use_library_code_types = true
-- Additional Plugins
--- O.user_plugins = {{"windwp/nvim-ts-autotag"}}
+-- O.user_plugins = {
+-- {"folke/tokyonight.nvim"}, {
+-- "ray-x/lsp_signature.nvim",
+-- config = function() require"lsp_signature".on_attach() end,
+-- event = "InsertEnter"
+-- }
+-- }
-- Autocommands (https://neovim.io/doc/user/autocmd.html)
-- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}}
@@ -112,7 +121,7 @@ To update plugins:
To update LunarVim:
-```
+```bash
cd ~/.config/nvim && git pull
```