From e2d9944c244546923798a08add611c3028d46a20 Mon Sep 17 00:00:00 2001 From: abzcoding Date: Thu, 8 Jul 2021 10:06:44 +0430 Subject: [PATCH] updated readme, revmoed dead configs, added better user_plugins suggestions --- README.md | 23 ++++++++++++++++------- 1 file 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 ```