1
0
Fork 0

nvim: make mind window wider

This commit is contained in:
tastytea 2022-08-31 03:55:28 +02:00
parent 239579c979
commit 6ad132817d
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 5 additions and 1 deletions

View File

@ -103,7 +103,11 @@ require('lualine').setup({
map('n', '<Leader>B', require('bug-reference').open, 'Open bug under cursor')
local mind = require('mind')
mind.setup({})
mind.setup({
ui = {
width = 50
}
})
map('n', '<C-F9>', mind.open_main, 'Open main mind')
map('n', '<F33>', mind.open_main, 'Open main mind') -- <C-F9> = <F33>
map('n', '<S-F9>', mind.open_main, 'Open main mind')