summaryrefslogtreecommitdiff
path: root/utils/installer/lv-config.example-no-ts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'utils/installer/lv-config.example-no-ts.lua')
-rw-r--r--utils/installer/lv-config.example-no-ts.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/utils/installer/lv-config.example-no-ts.lua b/utils/installer/lv-config.example-no-ts.lua
index ab12309d..c0df5b8b 100644
--- a/utils/installer/lv-config.example-no-ts.lua
+++ b/utils/installer/lv-config.example-no-ts.lua
@@ -48,6 +48,21 @@ lvim.builtin.treesitter.highlight.enabled = true
-- buf_set_option("omnifunc", "v:lua.vim.lsp.omnifunc")
-- end
+-- set a formatter if you want to override the default lsp one (if it exists)
+-- lvim.lang.python.formatters = {
+-- {
+-- exe = "black",
+-- args = {}
+-- }
+-- }
+-- set an additional linter
+-- lvim.lang.python.linters = {
+-- {
+-- exe = "flake8",
+-- args = {}
+-- }
+-- }
+
-- Additional Plugins
-- lvim.plugins = {
-- {"folke/tokyonight.nvim"}, {