aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins.lua
diff options
context:
space:
mode:
authorLuca Matei Pintilie <lucafulger@gmail.com>2022-11-08 20:44:06 +0000
committerLuca Matei Pintilie <lucafulger@gmail.com>2022-11-08 20:44:06 +0000
commit5dbc5a1fae4a2dc03f16035194e9854d37b5f6de (patch)
tree3d2f20d58547530f826ced28cff00735bd89243d /.config/nvim/lua/plugins.lua
parentb6726af45a1bc244923ff7ab7f6c822e0e4df66a (diff)
downloaddotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.tar
dotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.tar.gz
dotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.tar.bz2
dotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.tar.lz
dotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.tar.xz
dotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.tar.zst
dotfiles-5dbc5a1fae4a2dc03f16035194e9854d37b5f6de.zip
Neovim omnisharp plugin and tmux color fix on foot and inputrc emacs
Diffstat (limited to '.config/nvim/lua/plugins.lua')
-rw-r--r--.config/nvim/lua/plugins.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua
index 6f5c994..b2ca11d 100644
--- a/.config/nvim/lua/plugins.lua
+++ b/.config/nvim/lua/plugins.lua
@@ -31,7 +31,6 @@ local PKGS = {
{ url = "https://github.com/dracula/vim.git" };
{ url = "https://github.com/folke/tokyonight.nvim.git" };
{ url = "https://github.com/Mofiqul/vscode.nvim.git" };
- -- { url = "https://github.com/marko-cerovac/material.nvim.git" };
{ url = "https://github.com/sainnhe/sonokai.git" };
{ url = "https://github.com/navarasu/onedark.nvim.git" };
{ url = "https://github.com/Mofiqul/adwaita.nvim.git" };
@@ -60,6 +59,7 @@ local PKGS = {
{ url = "https://github.com/lvimuser/lsp-inlayhints.nvim.git" };
{ url = "https://github.com/sigmaSd/deno-nvim.git" };
{ url = "https://github.com/ray-x/lsp_signature.nvim.git" };
+ { url = "https://github.com/Hoffs/omnisharp-extended-lsp.nvim.git" };
-- Dev container
{ url = "https://codeberg.org/esensar/nvim-dev-container.git" };
@@ -184,10 +184,10 @@ local function init_plugins()
ensure_installed = { "javascript"; "typescript"; "lua"; "c_sharp"; "jsonc" };
sync_install = false;
auto_install = true;
- highlight = { enable = true; disable = { "markdown"; "yaml"; "sql" } };
+ highlight = { enable = true; disable = { "markdown"; "yaml"; "sql"; "help" } };
})
- require('mini.surround').setup({})
+ require("mini.surround").setup({})
end