lazy load nvim ft specific plugins
This commit is contained in:
parent
2dbe1b6228
commit
bd61358c17
@ -104,13 +104,13 @@ require('packer').startup(function(use)
|
|||||||
use 'johann2357/nvim-smartbufs'
|
use 'johann2357/nvim-smartbufs'
|
||||||
|
|
||||||
-- Latex preview
|
-- Latex preview
|
||||||
use 'xuhdev/vim-latex-live-preview'
|
use {'xuhdev/vim-latex-live-preview', ft = 'tex', bufread = true}
|
||||||
|
|
||||||
-- DevOps Quatsch
|
-- DevOps Quatsch
|
||||||
use 'cespare/vim-toml'
|
use {'cespare/vim-toml', ft = 'toml'}
|
||||||
use 'mrk21/yaml-vim'
|
use {'mrk21/yaml-vim', ft = 'yaml'}
|
||||||
use 'hashivim/vim-terraform'
|
use {'hashivim/vim-terraform', ft = 'terraform'}
|
||||||
use 'pedrohdz/vim-yaml-folds'
|
use {'pedrohdz/vim-yaml-folds', ft = 'yaml'}
|
||||||
|
|
||||||
-- Add custom plugins to packer from ~/.config/nvim/lua/custom/plugins.lua
|
-- Add custom plugins to packer from ~/.config/nvim/lua/custom/plugins.lua
|
||||||
local has_plugins, plugins = pcall(require, 'custom.plugins')
|
local has_plugins, plugins = pcall(require, 'custom.plugins')
|
||||||
|
Loading…
Reference in New Issue
Block a user