diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 14:10:25 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 14:10:25 +0200 |
commit | 409dfed3237f9f0a6e96879078d1daf3d9c02e03 (patch) | |
tree | fd340e6803212b5ae401e2d6a1b524c412498663 /.config/nvim/lua/default-config.lua | |
parent | 4918f8747e2d3e4d3342bb1f5ee05db6198819d1 (diff) |
Updated config again after Chris's updates
Diffstat (limited to '.config/nvim/lua/default-config.lua')
-rw-r--r-- | .config/nvim/lua/default-config.lua | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.config/nvim/lua/default-config.lua b/.config/nvim/lua/default-config.lua index 0207635..fce3caf 100644 --- a/.config/nvim/lua/default-config.lua +++ b/.config/nvim/lua/default-config.lua @@ -20,6 +20,7 @@ O = { smart_case = true, lushmode = false, hl_search = false, + document_highlight = false, transparent_window = false, leader_key = "space", vnsip_dir = vim.fn.stdpath "config" .. "/snippets", @@ -65,8 +66,6 @@ O = { dashboard = { active = false }, colorizer = { active = false }, zen = { active = false }, - hop = { active = false }, - vim_rooter = { active = false }, ts_context_commentstring = { active = false }, ts_hintobjects = { active = false }, ts_autotag = { active = false }, @@ -84,9 +83,13 @@ O = { floatterm = { active = false }, trouble = { active = false }, sanegx = { active = false }, + vim_rooter = { active = false }, + hop = { active = false }, }, - custom_plugins = { + user_which_key = {}, + + user_plugins = { -- use config.lua for this not put here }, @@ -203,7 +206,7 @@ O = { ' ##########..........########## ', ' ##########........########## ', ' ##########.......########## ', - ' ##########.....##########.. ', + ' ##########.....##########.. ', ' ##########....##########..... ', ' ..##########..##########......... ', ' ....##########.#########............. ', @@ -217,6 +220,5 @@ O = { ' ..... ', ' . ', }, - footer = { "chrisatmachine.com" }, }, } |