From 01586921b3d5f2ac1ccf8196d3ad9b4b3ddd31f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chlo=C3=A9=20Vulquin?= Date: Wed, 24 Jul 2024 19:19:26 +0200 Subject: nvim: rewrite config in fennel One file isn't done, and there's also the question of ftplugin and co. One step at a time though, eh? --- dot_config/nvim/lua/plugins/langs.lua | 52 ++--------------------------------- 1 file changed, 2 insertions(+), 50 deletions(-) (limited to 'dot_config/nvim/lua/plugins/langs.lua') diff --git a/dot_config/nvim/lua/plugins/langs.lua b/dot_config/nvim/lua/plugins/langs.lua index fd08024..0e49dc6 100644 --- a/dot_config/nvim/lua/plugins/langs.lua +++ b/dot_config/nvim/lua/plugins/langs.lua @@ -1,50 +1,2 @@ --- language support -return { - -- treesitter - { - 'nvim-treesitter/nvim-treesitter', - version = false, - build = ':TSUpdate', - dependencies = { - 'nvim-treesitter/nvim-treesitter-textobjects', - }, - main = 'nvim-treesitter.configs', - opts = { - ensure_installed = 'all', - ignore_install = { 'norg' }, - sync_intall = true, - highlight = { - enable = true, - disable = { - 'markdown', - }, - additional_vim_regex_highlighting = { - 'markdown', - }, - }, - }, - }, - - -- non-treesitter languages - { - 'janet-lang/janet.vim', - ft = 'janet', - }, - { - 'preservim/vim-markdown', - version = false, - dependencies = {'godlygeek/tabular'}, - ft = 'markdown', - }, - - -- helpers for lisps - { - 'gpanders/nvim-parinfer', - ft = { - 'clojure', - 'fennel', - 'janet', - 'scm', - }, - }, -} +-- [nfnl] Compiled from fnl/plugins/langs.fnl by https://github.com/Olical/nfnl, do not edit. +return {{"nvim-treesitter/nvim-treesitter", build = ":TSUpdate", dependnecies = {"nvim-treesitter/nvim-treesitter-textobjects"}, main = "nvim-treesitter.configs", opts = {ensure_installed = "all", ignore_install = {"norg"}, sync_install = "true", highlight = {enable = true, disable = {"markdown"}, additional_vim_regex_highlighting = {"markdown"}}}, version = false}, {"janet-lang/janet.vim", ft = "janet"}, {"preservim/vim-markdown", dependencies = {"godlygeek/tabular"}, ft = "markdown", version = false}, {"gpanders/nvim-parinfer", ft = {"clojure", "fennel", "janet", "scm"}}} -- cgit v1.2.3