chore: add elixir syntax highlighter, update neovim
This commit is contained in:
parent
975d0afc31
commit
8761483509
3 changed files with 7 additions and 3 deletions
|
@ -17,7 +17,10 @@ require("lazy").setup({
|
||||||
-- Lualine
|
-- Lualine
|
||||||
{ 'nvim-lualine/lualine.nvim' },
|
{ 'nvim-lualine/lualine.nvim' },
|
||||||
-- Gruvbox theme
|
-- Gruvbox theme
|
||||||
{ 'ellisonleao/gruvbox.nvim' },
|
{
|
||||||
|
'ellisonleao/gruvbox.nvim',
|
||||||
|
tag = '2.0.0',
|
||||||
|
},
|
||||||
|
|
||||||
-- Telescope
|
-- Telescope
|
||||||
{
|
{
|
||||||
|
@ -31,7 +34,7 @@ require("lazy").setup({
|
||||||
-- Nvim-treesitter
|
-- Nvim-treesitter
|
||||||
{
|
{
|
||||||
'nvim-treesitter/nvim-treesitter',
|
'nvim-treesitter/nvim-treesitter',
|
||||||
tag = 'v0.9.1',
|
tag = 'v0.9.2',
|
||||||
init = function()
|
init = function()
|
||||||
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
|
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
|
||||||
ts_update()
|
ts_update()
|
||||||
|
|
|
@ -10,6 +10,7 @@ configs.setup {
|
||||||
"diff",
|
"diff",
|
||||||
"dockerfile",
|
"dockerfile",
|
||||||
"dot",
|
"dot",
|
||||||
|
"elixir",
|
||||||
"gdscript",
|
"gdscript",
|
||||||
"gitcommit", "gitignore", "gitattributes", "git_rebase", "git_config",
|
"gitcommit", "gitignore", "gitattributes", "git_rebase", "git_config",
|
||||||
"go", "gomod",
|
"go", "gomod",
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
ansible.builtin.git:
|
ansible.builtin.git:
|
||||||
repo: https://github.com/neovim/neovim
|
repo: https://github.com/neovim/neovim
|
||||||
dest: "{{ ansible_env.HOME }}/src/neovim"
|
dest: "{{ ansible_env.HOME }}/src/neovim"
|
||||||
version: v0.9.5
|
version: v0.10.0
|
||||||
- name: Install build dependencies
|
- name: Install build dependencies
|
||||||
when: not stat_result.stat.exists
|
when: not stat_result.stat.exists
|
||||||
become: true
|
become: true
|
||||||
|
|
Loading…
Reference in a new issue