diff options
author | christianchiarulli <[email protected]> | 2021-07-08 17:17:45 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-08 17:17:45 -0400 |
commit | 9b1d18a1c172e09bc44a9c80b79d1d9cb37a140a (patch) | |
tree | 148adcad1734fe77aa858612fb1421cd9f089ceb /README.md | |
parent | 25cfc15b46039f4a40a23d83cc555ff02a39f086 (diff) | |
parent | 4f372bb3b77f5bc60aa14fdaf2b9687414fc981a (diff) |
Merge branch 'master' of github.com:ChristianChiarulli/LunarVim into rolling
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 23 |
1 files changed, 16 insertions, 7 deletions
@@ -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 ``` |