Merge pull request #778 from abzcoding/readme-update

Updated readme to remove dead options and add new ones
This commit is contained in:
rebuilt 2021-07-08 09:34:43 +02:00 committed by GitHub
commit d4a08654e5
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,12 +52,12 @@ O.timeoutlen = 100
O.leader_key = ' ' O.leader_key = ' '
-- After changing plugin config it is recommended to run :PackerCompile -- After changing plugin config it is recommended to run :PackerCompile
O.plugin.hop.active = true
O.plugin.colorizer.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.trouble.active = true
O.plugin.lazygit.active = true
O.plugin.zen.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 -- if you don't want all the parsers change this to a table of the ones you want
O.treesitter.ensure_installed = "all" O.treesitter.ensure_installed = "all"
@ -73,11 +73,20 @@ O.lang.tsserver.formatter = 'prettier'
O.lang.tsserver.linter = nil O.lang.tsserver.linter = nil
O.lang.tsserver.autoformat = true O.lang.tsserver.autoformat = true
-- json -- python
O.lang.json.autoformat = true -- 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 -- 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) -- Autocommands (https://neovim.io/doc/user/autocmd.html)
-- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}} -- O.user_autocommands = {{ "BufWinEnter", "*", "echo \"hi again\""}}
@ -112,7 +121,7 @@ To update plugins:
To update LunarVim: To update LunarVim:
``` ```bash
cd ~/.config/nvim && git pull cd ~/.config/nvim && git pull
``` ```