diff options
author | christianchiarulli <[email protected]> | 2021-07-10 02:38:25 -0400 |
---|---|---|
committer | christianchiarulli <[email protected]> | 2021-07-10 02:38:25 -0400 |
commit | e4e8b380129abde3e0377aca8ccacce999e80962 (patch) | |
tree | 854f1f1c32cf2f3591f12723cf121a81093f6f71 /lua/default-config.lua | |
parent | 1235d18f8d0dbbd1d962dd6b77094f4b07ad96ee (diff) |
refactor settings
Diffstat (limited to 'lua/default-config.lua')
-rw-r--r-- | lua/default-config.lua | 37 |
1 files changed, 10 insertions, 27 deletions
diff --git a/lua/default-config.lua b/lua/default-config.lua index c7932590..03d72dbc 100644 --- a/lua/default-config.lua +++ b/lua/default-config.lua @@ -5,35 +5,17 @@ TERMINAL = vim.fn.expand "$TERMINAL" USER = vim.fn.expand "$USER" O = { - format_on_save = true, - auto_close_tree = 0, - colorcolumn = "99999", -- fixes indentline for now + leader_key = "space", colorscheme = "spacegray", - clipboard = "unnamedplus", - hidden_files = true, - wrap_lines = false, - spell = false, - spelllang = "en", - number = true, - relative_number = false, - number_width = 4, - shift_width = 2, - tab_stop = 2, - cmdheight = 2, - cursorline = true, - shell = "bash", - scrolloff = 0, - timeoutlen = 100, - nvim_tree_disable_netrw = 0, - ignore_case = true, - smart_case = true, - lushmode = false, - hl_search = false, - document_highlight = true, transparent_window = false, - leader_key = "space", + format_on_save = true, vnsip_dir = vim.fn.stdpath "config" .. "/snippets", + -- TODO refactor for tree + auto_close_tree = 0, + nvim_tree_disable_netrw = 0, + + -- TODO refactor treesitter -- @usage pass a table with your desired languages treesitter = { ensure_installed = "all", @@ -65,15 +47,15 @@ O = { }, lsp = { + document_highlight = true, popup_border = "single", }, - database = { save_location = "~/.config/nvcode_db", auto_execute = 1 }, + database = { save_location = "~/.config/lunarvim_db", auto_execute = 1 }, plugin = { -- Builtins diffview = { active = false }, - ts_context_commentstring = { active = false }, ts_hintobjects = { active = false }, ts_autotag = { active = false }, @@ -86,6 +68,7 @@ O = { lush = { active = false }, }, + -- TODO just using mappings (leader mappings) user_which_key = {}, user_plugins = { |