diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2023-08-28 20:55:37 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2023-08-28 20:55:37 +0200 |
| commit | ac0f9cc603aafea699a16d70cfb848dff772b662 (patch) | |
| tree | b51c8d8ebe5374b0a49f070be2d5f00e36b185a0 /config/nvim/lua/plugins.lua | |
| parent | a9b48c1517451c057b62caf6d3e110e7794362a2 (diff) | |
| parent | 5611602e544abe6d8ad35f459a814f20172aec9c (diff) | |
| download | dotfiles-ac0f9cc603aafea699a16d70cfb848dff772b662.tar.gz dotfiles-ac0f9cc603aafea699a16d70cfb848dff772b662.tar.bz2 dotfiles-ac0f9cc603aafea699a16d70cfb848dff772b662.zip | |
Merge branch 'master' of github.com:cacharle/dotfiles
Diffstat (limited to 'config/nvim/lua/plugins.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) |
