diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 12:08:47 +0200 |
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2021-07-07 12:08:47 +0200 |
| commit | 4918f8747e2d3e4d3342bb1f5ee05db6198819d1 (patch) | |
| tree | a3921df9c422a4bf9bc254d7ca0dbf347364ef4f /.config/nvim/config.lua | |
| parent | 0111b31cb0008f4fcc55ddc373e63f124652b156 (diff) | |
Enable dashboard, fixed typo in init.lua for dashboard
Diffstat (limited to '.config/nvim/config.lua')
| -rw-r--r-- | .config/nvim/config.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/nvim/config.lua b/.config/nvim/config.lua index ca83853..b50537c 100644 --- a/.config/nvim/config.lua +++ b/.config/nvim/config.lua @@ -1,6 +1,5 @@ -- O is the global options object --- THESE ARE EXAMPLE CONFIGS FEEL FREE TO CHANGE TO WHATEVER YOU WANT -- general O.auto_complete = true O.relative_number = true @@ -9,12 +8,13 @@ O.timeoutlen = 100 O.leader_key = ' ' -- After changing plugin config it is recommended to run :PackerCompile +O.plugin.dashboard.active = true O.plugin.hop.active = true O.plugin.colorizer.active = true O.plugin.trouble.active = true O.plugin.lazygit.active = true O.plugin.zen.active = true --- O.plugin.vim_rooter.active = true +O.plugin.vim_rooter.active = true -- O.plugin.markdown_preview.active = true -- if you don't want all the parsers change this to a table of the ones you want @@ -23,7 +23,7 @@ O.treesitter.ignore_install = {"haskell"} O.treesitter.highlight.enabled = true -- lua -O.lang.lua.autoformat = false +O.lang.lua.autoformat = true O.lang.lua.formatter = 'lua-format' -- python |