From 59435389fef426d1d8848bea14498e11f681d177 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Thu, 8 Sep 2022 20:24:47 +0300 Subject: [PATCH] Nvim: add rofi config (.rasi) treesitter grammar --- home/.config/nvim/lua/plugins/treesitter.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/.config/nvim/lua/plugins/treesitter.lua b/home/.config/nvim/lua/plugins/treesitter.lua index 25c5cc9..ffef72a 100644 --- a/home/.config/nvim/lua/plugins/treesitter.lua +++ b/home/.config/nvim/lua/plugins/treesitter.lua @@ -3,8 +3,8 @@ return function() ensure_installed = { 'bash', 'c', 'css', 'dockerfile', 'html', 'http', 'java', 'json', 'json5', 'latex', 'lua', 'make', 'markdown', 'php', 'python', - 'regex', 'rst', 'scss', 'toml', 'tsx', 'typescript', 'javascript', - 'yaml' + 'regex', 'rasi', 'rst', 'scss', 'toml', 'tsx', 'typescript', + 'javascript', 'yaml' }, highlight = {enable = true}, indent = {enable = true},