summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/globals.lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-07 01:05:06 +0200
commit0111b31cb0008f4fcc55ddc373e63f124652b156 (patch)
tree075490fb19c4838fc58129da9f902a3370f6029e /.config/nvim/lua/globals.lua
parent6fcc69113bd7cc7295ef9dc068da80d043cbb8bb (diff)
Updated config based on Chris LunarVim release
Diffstat (limited to '.config/nvim/lua/globals.lua')
-rw-r--r--.config/nvim/lua/globals.lua64
1 files changed, 0 insertions, 64 deletions
diff --git a/.config/nvim/lua/globals.lua b/.config/nvim/lua/globals.lua
deleted file mode 100644
index 9115c2e..0000000
--- a/.config/nvim/lua/globals.lua
+++ /dev/null
@@ -1,64 +0,0 @@
-CONFIG_PATH = vim.fn.stdpath('config')
-DATA_PATH = vim.fn.stdpath('data')
-CACHE_PATH = vim.fn.stdpath('cache')
-O = {
- auto_close_tree = 0,
- auto_complete = true,
- colorscheme = 'lunar',
- hidden_files = true,
- wrap_lines = false,
- number = true,
- relative_number = true,
- shell = 'bash',
- timeoutlen = 100,
- nvim_tree_disable_netrw = 0,
- extras = false,
-
- -- @usage pass a table with your desired languages
- treesitter = {
- ensure_installed = "all",
- ignore_install = {"haskell"},
- highlight = {enabled = true},
- playground = {enabled = true},
- rainbow = {enabled = false}
- },
- database = {save_location = '~/.config/nvim_db', auto_execute = 1},
- python = {
- linter = '',
- formatter = '',
- autoformat = false,
- isort = false,
- diagnostics = {virtual_text = {spacing = 0, prefix = ""}, signs = true, underline = true},
- analysis = {type_checking = "basic", auto_search_paths = true, use_library_code_types = true}
- },
- lua = {
- -- @usage can be 'lua-format'
- formatter = '',
- autoformat = false,
- diagnostics = {virtual_text = {spacing = 0, prefix = ""}, signs = true, underline = true}
- },
- sh = {
- -- @usage can be 'shellcheck'
- linter = '',
- -- @usage can be 'shfmt'
- formatter = '',
- autoformat = false,
- diagnostics = {virtual_text = {spacing = 0, prefix = ""}, signs = true, underline = true}
- },
- tsserver = {
- -- @usage can be 'eslint'
- linter = '',
- -- @usage can be 'prettier'
- formatter = '',
- autoformat = false,
- diagnostics = {virtual_text = {spacing = 0, prefix = ""}, signs = true, underline = true}
- },
- json = {
- -- @usage can be 'prettier'
- formatter = '',
- autoformat = false,
- diagnostics = {virtual_text = true, signs = true, underline = true}
- },
- go = {},
- clang = {diagnostics = {virtual_text = {spacing = 0, prefix = ""}, signs = true, underline = true}},
-}