From 457f339f13f244c3020a17513b8b7632cf529e43 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Mon, 21 Aug 2023 17:39:00 +0200 Subject: Updated fish config to use virtualfish --- config/nvim/lua/plugins.lua | 35 ++++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) (limited to 'config/nvim/lua') diff --git a/config/nvim/lua/plugins.lua b/config/nvim/lua/plugins.lua index bc1e10c..03659d7 100644 --- a/config/nvim/lua/plugins.lua +++ b/config/nvim/lua/plugins.lua @@ -7,6 +7,13 @@ return require("packer").startup(function() use "romainl/vim-cool" -- only highlight search matches when searching use "lukas-reineke/indent-blankline.nvim" + -- use { + -- "lewis6991/satellite.nvim", + -- config = function () + -- require('satellite').setup() + -- end + -- } + -- Put arguments on multiple lines use { "FooSoft/vim-argwrap", @@ -342,23 +349,24 @@ return require("packer").startup(function() config = function() require("nvim-treesitter.configs").setup { ensure_installed = { - "c", - "python", - "lua", - "rust", "bash", + "c", "commonlisp", "cpp", + "fish", "glsl", + "go", "haskell", "json", + "lua", "markdown", + "meson", + "python", "query", + "rust", "vim", + "vimdoc", "yaml", - "meson", - "go", - "fish", }, highlight = { enable = true @@ -486,9 +494,19 @@ return require("packer").startup(function() -- } -- -- TODO: extend with job_distant_config.lua -- end, - -- run = ":DistantInstall" + -- -- run = ":DistantInstall" -- } + use { + 'chipsenkbeil/distant.nvim', + branch = 'v0.3', + config = function() + require('distant'):setup() + require("telescope").load_extension("distant") + end, + -- run = ":DistantInstall" + } + -- jupyter kernel in nvim (with images, needs ueberzug) -- use { -- "dccsillag/magma-nvim", @@ -505,6 +523,5 @@ return require("packer").startup(function() -- end -- } - -- use { "nvim-treesitter/playground", opt = true, cmd = { "TSPlaygroundToggle" } } -- use { "~/git/argwrap.nvim", opt = true } end) -- cgit