diff options
author | christianchiarulli <[email protected]> | 2021-04-15 00:17:48 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-04-15 00:17:48 -0400 |
commit | 2cd8c6a21cb6c9af91e631f565e31f5803cdaa7c (patch) | |
tree | 7207301e310a278c0f91b4595ddc93fd98238093 /nv-settings.lua | |
parent | 1853b4f2aa13b83ff542171060f92d3d4d961a68 (diff) |
LunarVim
Diffstat (limited to 'nv-settings.lua')
-rw-r--r-- | nv-settings.lua | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/nv-settings.lua b/nv-settings.lua deleted file mode 100644 index 0125ad8c..00000000 --- a/nv-settings.lua +++ /dev/null @@ -1,53 +0,0 @@ ---[[ -O is the global options object - -Formatters and linters should be -filled in as strings with either -a global executable or a path to -an executable -]] - --- general -O.auto_complete = true -O.colorscheme = 'lunar' -O.auto_close_tree = 0 -O.wrap_lines = false - -O.treesitter.ensure_installed = "all" -O.treesitter.ignore_install = {"haskell"} -O.treesitter.highlight.enabled = true -O.treesitter.playground.enabled = true -O.treesitter.rainbow.enabled = false - - -O.clang.diagnostics.virtual_text = false -O.clang.diagnostics.signs = false -O.clang.diagnostics.underline = false - --- python --- add things like O.python.formatter.yapf.exec_path --- add things like O.python.linter.flake8.exec_path --- add things like O.python.formatter.isort.exec_path -O.python.formatter = 'yapf' --- O.python.linter = 'flake8' -O.python.isort = true -O.python.autoformat = true -O.python.diagnostics.virtual_text = true -O.python.diagnostics.signs = true -O.python.diagnostics.underline = true - --- lua --- TODO look into stylua -O.lua.formatter = 'lua-format' --- O.lua.formatter = 'lua-format' -O.lua.autoformat = false - --- javascript -O.tsserver.formatter = 'prettier' -O.tsserver.linter = nil -O.tsserver.autoformat = true - --- json -O.json.autoformat = true - --- create custom autocommand field (This would be easy with lua) |