Add new lazy nvim plugins
This commit is contained in:
parent
e45a4ea8da
commit
674ea2016f
16
dot_config/nvim/lua/plugins/coding.lua
Normal file
16
dot_config/nvim/lua/plugins/coding.lua
Normal 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 = {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
3
dot_config/nvim/lua/plugins/disabled.lua
Normal file
3
dot_config/nvim/lua/plugins/disabled.lua
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
return {
|
||||||
|
{ "echasnovski/mini.pairs", enabled = false },
|
||||||
|
}
|
13
dot_config/nvim/lua/plugins/test.lua
Normal file
13
dot_config/nvim/lua/plugins/test.lua
Normal 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" }
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
@ -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
|
||||||
|
@ -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)"
|
|
||||||
|
Loading…
Reference in New Issue
Block a user