comparison .chezmoitemplates/init.lua @ 577:50e9c21e8e95

Add firenvim
author zegervdv <zegervdv@me.com>
date Fri, 07 Jan 2022 09:23:37 +0100
parents 8b04d5ffd210
children 4e25c3d4470d
comparison
equal deleted inserted replaced
576:9f35e79242d0 577:50e9c21e8e95
587 keys = { [[<F12>]] }, 587 keys = { [[<F12>]] },
588 } 588 }
589 589
590 -- Filetypes 590 -- Filetypes
591 use { 'lepture/vim-jinja' } 591 use { 'lepture/vim-jinja' }
592 end) 592
593 -- Integration with external tools
594 use {
595 'glacambre/firenvim',
596 run = function() vim.fn['firenvim#install'](0) end,
597 config = function ()
598 vim.g.firenvim_config = {
599 localSettings = {
600 ['.*'] = {
601 takeover = 'never',
602 }
603 }
604 }
605 end,
606 }
607
608 end)
593 609
594 vim.cmd [[ packadd dirbuf.nvim ]] 610 vim.cmd [[ packadd dirbuf.nvim ]]
595 611
596 -- Configuration 612 -- Configuration
597 local opt = vim.opt 613 local opt = vim.opt