Add new lazy nvim plugins

This commit is contained in:
Jan Eitzinger 2024-02-16 14:17:59 +01:00
parent e45a4ea8da
commit 674ea2016f
5 changed files with 33 additions and 5 deletions

View File

@ -0,0 +1,16 @@
return {
{
"hrsh7th/nvim-cmp",
opts = function(_, opts)
local cmp = require("cmp")
opts.sources = cmp.config.sources(vim.list_extend(opts.sources, { { name = "neorg" } }))
end,
},
{
"windwp/nvim-autopairs",
event = "InsertEnter",
opts = {
fast_wrap = {},
},
},
}

View File

@ -0,0 +1,3 @@
return {
{ "echasnovski/mini.pairs", enabled = false },
}

View File

@ -0,0 +1,13 @@
return {
{
"nvim-neotest/neotest",
opts = {
adapters = {
["neotest-go"] = {
-- Here we can set options for neotest-go, e.g.
-- args = { "-tags=integration" }
},
},
},
},
}

View File

@ -59,7 +59,7 @@ User unrz254
ProxyJump cshpc ProxyJump cshpc
Host gondor Host gondor
Hostname 192.168.178.60 Hostname 192.168.1.130
ForwardAgent no ForwardAgent no
Host rohan Host rohan

View File

@ -12,7 +12,6 @@ COMPLETION_WAITING_DOTS="false"
export FZF_DEFAULT_COMMAND="fd --type file --color=always" export FZF_DEFAULT_COMMAND="fd --type file --color=always"
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND" export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
export FZF_DEFAULT_OPTS="--ansi" export FZF_DEFAULT_OPTS="--ansi"
export BAT_THEME="gruvbox-dark"
zle -N zle-line-init zle -N zle-line-init
zle -N zle-keymap-select zle -N zle-keymap-select
@ -39,6 +38,3 @@ source $HOME/perl5/perlbrew/etc/bashrc
export PATH=/opt/homebrew/bin:$PATH export PATH=/opt/homebrew/bin:$PATH
{{ end }} {{ end }}
{{ end }} {{ end }}
eval "$(zoxide init zsh)"
eval "$(starship init zsh)"