Add ansible-vim plugin
This commit is contained in:
parent
39badfc0ed
commit
aade1ac1be
2 changed files with 4 additions and 1 deletions
roles/neovim/files/lua/plugins
|
@ -18,7 +18,7 @@ require'nvim-treesitter.configs'.setup {
|
|||
-- disable highlighting for the `tex` filetype, you need to include `latex` in this list as this is
|
||||
-- the name of the parser)
|
||||
-- list of language that will be disabled
|
||||
disable = { "latex" },
|
||||
disable = { "latex", "yaml" },
|
||||
|
||||
-- Setting this to true will run `:h syntax` and tree-sitter at the same time.
|
||||
-- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
|
||||
|
|
|
@ -57,6 +57,9 @@ return require('packer').startup(function(use)
|
|||
-- Display thin vertical lines at each indentation level
|
||||
use 'Yggdroot/indentLine'
|
||||
|
||||
-- Ansible syntax highlighting
|
||||
use 'pearofducks/ansible-vim'
|
||||
|
||||
-- Automatically set up your configuration after cloning packer.nvim
|
||||
-- Put this at the end after all plugins
|
||||
if packer_bootstrap then
|
||||
|
|
Loading…
Add table
Reference in a new issue