FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nvim-setup/lua/coderxin/plugins-setup.lua at main · coderxin/nvim-setup · GitHub
coderxin
/
nvim-setup
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
nvim-setup
/
lua
/
coderxin
/
plugins-setup.lua
Copy path
More file actions
More file actions
Latest commit
History
History
History
179 lines (150 loc) · 3.64 KB
Breadcrumbs
nvim-setup
/
lua
/
coderxin
/
plugins-setup.lua
Copy path
File metadata and controls
179 lines (150 loc) · 3.64 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
--
Bootstrap lazy.nvim
local
lazypath
=
vim
.
fn
.
stdpath
(
"
data
"
)
..
"
/lazy/lazy.nvim
"
if
not
vim
.
loop
.
fs_stat
(
lazypath
)
then
vim
.
fn
.
system
({
"
git
"
,
"
clone
"
,
"
--filter=blob:none
"
,
"
https://github.com/folke/lazy.nvim.git
"
,
"
--branch=stable
"
,
lazypath
,
})
end
vim
.
opt
.
rtp
:
prepend
(
lazypath
)
--
Plugins to install
require
(
"
lazy
"
).
setup
({
--
lua functions
{
"
nvim-lua/plenary.nvim
"
},
--
navigation between tmux panes and vim splits
{
"
christoomey/vim-tmux-navigator
"
},
--
colorscheme
{
"
folke/tokyonight.nvim
"
,
lazy
=
false
,
priority
=
1000
,
config
=
function
()
vim
.
cmd
(
"
colorscheme tokyonight
"
)
end
,
},
--
bufferline buffers and tabs
{
"
akinsho/bufferline.nvim
"
,
version
=
"
*
"
,
dependencies
=
{
"
nvim-tree/nvim-web-devicons
"
},
},
--
marking of file for revisiting
{
"
theprimeagen/harpoon
"
},
--
pretty list for showing diagnostics, references, etc
{
"
folke/trouble.nvim
"
,
config
=
function
()
require
(
"
trouble
"
).
setup
({
icons
=
false
})
end
,
},
--
git
{
"
airblade/vim-gitgutter
"
},
{
"
tpope/vim-fugitive
"
},
{
"
kdheepak/lazygit.nvim
"
},
--
lsp setup
{
"
VonHeikemen/lsp-zero.nvim
"
,
branch
=
"
v3.x
"
,
lazy
=
true
,
config
=
false
,
},
--
LSP Support
{
"
neovim/nvim-lspconfig
"
,
dependencies
=
{
{
"
hrsh7th/cmp-nvim-lsp
"
},
},
},
{
"
williamboman/mason.nvim
"
},
{
"
williamboman/mason-lspconfig.nvim
"
},
--
Autocompletion
{
"
hrsh7th/nvim-cmp
"
,
dependencies
=
{
{
"
hrsh7th/cmp-buffer
"
},
{
"
hrsh7th/cmp-path
"
},
{
"
saadparwaiz1/cmp_luasnip
"
},
{
"
hrsh7th/cmp-nvim-lsp
"
},
{
"
hrsh7th/cmp-nvim-lua
"
},
},
},
--
Snippets
{
"
L3MON4D3/LuaSnip
"
},
{
"
rafamadriz/friendly-snippets
"
},
--
Status of LSP progress
{
"
j-hui/fidget.nvim
"
,
tag
=
"
v1.4.5
"
,
},
--
Rust support (rustaceanvim replaces rust-tools.nvim)
{
"
mrcjkb/rustaceanvim
"
,
version
=
"
^5
"
,
lazy
=
false
,
},
--
Ruby and Rails
{
"
vim-ruby/vim-ruby
"
},
{
"
tpope/vim-rails
"
},
{
"
tpope/vim-endwise
"
},
--
TypeScript (typescript-tools replaces typescript.nvim)
{
"
pmizio/typescript-tools.nvim
"
,
dependencies
=
{
"
nvim-lua/plenary.nvim
"
,
"
neovim/nvim-lspconfig
"
},
},
{
"
iamcco/markdown-preview.nvim
"
,
cmd
=
{
"
MarkdownPreviewToggle
"
,
"
MarkdownPreview
"
,
"
MarkdownPreviewStop
"
},
build
=
"
cd app && yarn install
"
,
init
=
function
()
vim
.
g
.
mkdp_filetypes
=
{
"
markdown
"
}
end
,
ft
=
{
"
markdown
"
},
},
--
Debugging
{
"
mfussenegger/nvim-dap
"
},
--
Autopairs & Formatting & Identation
{
"
windwp/nvim-autopairs
"
},
{
"
tpope/vim-surround
"
},
{
"
lukas-reineke/indent-blankline.nvim
"
,
main
=
"
ibl
"
},
--
Comments
{
"
numToStr/Comment.nvim
"
},
{
"
folke/todo-comments.nvim
"
},
--
Automatically highlighting other uses of the word
{
"
RRethy/vim-illuminate
"
},
--
Nvim diagnostics
{
"
dstein64/vim-startuptime
"
},
--
Treesitter
{
"
nvim-treesitter/nvim-treesitter
"
,
build
=
"
:TSUpdate
"
,
},
--
shows the context of the currently visible buffer contents
{
"
nvim-treesitter/nvim-treesitter-context
"
},
--
file explorer
{
"
nvim-tree/nvim-tree.lua
"
},
--
vs-code like icons
{
"
nvim-tree/nvim-web-devicons
"
},
--
Fuzzy finding
{
"
nvim-telescope/telescope-fzf-native.nvim
"
,
build
=
"
make
"
,
},
--
telescope fuzzy finder
{
"
nvim-telescope/telescope.nvim
"
,
branch
=
"
0.1.x
"
,
},
--
statusline
{
"
nvim-lualine/lualine.nvim
"
},
--
copying / pasting text to the os specific clipboard
{
"
christoomey/vim-system-copy
"
},
}, {
--
lazy.nvim configuration
ui
=
{
border
=
"
rounded
"
,
},
})
Back
|
FazBrowse Home
|
New Git URL