|
@@ -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
|
|
|
```
|
|
|
|