diff options
author | Dominik Marcinowski <[email protected]> | 2021-04-02 09:30:05 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-02 03:30:05 -0400 |
commit | f5229cc1ee2c0b6779ddabffcda4e748757e083c (patch) | |
tree | f612002fe161d7899c587ec1cda5d1a20a1e9686 /lua | |
parent | f40925f94f73f05b88a867e26ff583c1c44829d3 (diff) |
Fix opening settings from dashboard (#214)
Diffstat (limited to 'lua')
-rw-r--r-- | lua/nv-autocommands/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nv-autocommands/init.lua b/lua/nv-autocommands/init.lua index e5743e1b..16962f45 100644 --- a/lua/nv-autocommands/init.lua +++ b/lua/nv-autocommands/init.lua @@ -37,7 +37,7 @@ utils.define_augroups({ { 'FileType', 'dashboard', 'setlocal nocursorline noswapfile synmaxcol& signcolumn=no norelativenumber nocursorcolumn nospell nolist nonumber bufhidden=wipe colorcolumn= foldcolumn=0 matchpairs= ' - }, {'FileType', 'dashboard', 'set showtabline=0 | autocmd WinLeave <buffer> set showtabline=2'} + }, {'FileType', 'dashboard', 'set showtabline=0 | autocmd BufLeave <buffer> set showtabline=2'} }, _markdown = {{'FileType', 'markdown', 'setlocal wrap'}, {'FileType', 'markdown', 'setlocal spell'}}, _solidity = { |