diff options
| author | Charles Cabergs <charles.cabergs@colruytgroup.com> | 2023-08-21 17:39:00 +0200 |
|---|---|---|
| committer | Charles Cabergs <charles.cabergs@colruytgroup.com> | 2023-08-21 17:39:00 +0200 |
| commit | 457f339f13f244c3020a17513b8b7632cf529e43 (patch) | |
| tree | 51eb4f79235764879cf3f5bed04ed852741d392d /config/nvim/lua | |
| parent | f4664534cdaa70b7583091c8100eed1d25618e7f (diff) | |
| download | dotfiles-457f339f13f244c3020a17513b8b7632cf529e43.tar.gz dotfiles-457f339f13f244c3020a17513b8b7632cf529e43.tar.bz2 dotfiles-457f339f13f244c3020a17513b8b7632cf529e43.zip | |
Updated fish config to use virtualfish
Diffstat (limited to 'config/nvim/lua')
| -rw-r--r-- | config/nvim/lua/plugins.lua | 35 |
1 files changed, 26 insertions, 9 deletions
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) |
