-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.lua
359 lines (342 loc) · 13.4 KB
/
init.lua
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
local config = {
-- Configure AstroNvim updates
updater = {
remote = "origin", -- remote to use
channel = "stable", -- "stable" or "nightly"
version = "latest", -- "latest", tag name, or regex search like "v1.*" to only do updates before v2 (STABLE ONLY)
branch = "main", -- branch name (NIGHTLY ONLY)
commit = nil, -- commit hash (NIGHTLY ONLY)
pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)
skip_prompts = false, -- skip prompts about breaking changes
show_changelog = true, -- show the changelog after performing an update
auto_reload = false, -- automatically reload and sync packer after a successful update
auto_quit = false, -- automatically quit the current session after a successful update
},
-- Set colorscheme to use
colorscheme = "gruvbox",
-- Add highlight groups in any theme
highlights = {},
-- set vim options here (vim.<first_key>.<second_key> = value)
options = {
opt = {
relativenumber = true, -- sets vim.opt.relativenumber
number = true, -- sets vim.opt.number
spell = false, -- sets vim.opt.spell
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
wrap = false, -- sets vim.opt.wrap
swapfile = false,
backup = false,
undodir = os.getenv "HOME" .. "/.vim/undodir",
undofile = true,
scrolloff = 8,
cursorline = true,
foldenable = false,
foldexpr = "nvim_treesitter#foldexpr()", -- set Treesitter based folding
foldmethod = "expr",
},
g = {
mapleader = " ", -- sets vim.g.mapleader
autoformat_enabled = true, -- enable or disable auto formatting at start (lsp.formatting.format_on_save must be enabled)
cmp_enabled = true, -- enable completion at start
autopairs_enabled = true, -- enable autopairs at start
diagnostics_enabled = true, -- enable diagnostics at start
status_diagnostics_enabled = true, -- enable diagnostics in statusline
icons_enabled = true, -- disable icons in the UI (disable if no nerd font is available, requires :PackerSync after changing)
ui_notifications_enabled = true, -- disable notifications when toggling UI elements
heirline_bufferline = true, -- enable new heirline based bufferline (requires :PackerSync after changing)
},
},
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = {
virtual_text = true,
underline = true,
},
-- Extend LSP configuration
lsp = {
-- will be set up by rust-tools & the typescript plugin
skip_setup = { "rust_analyzer", "tsserver" },
-- enable servers that you already have installed without mason
servers = {},
formatting = {
-- control auto formatting on save
format_on_save = {
enabled = true, -- enable or disable format on save globally
allow_filetypes = { -- enable format on save for specified filetypes only
-- "go",
},
ignore_filetypes = { -- disable format on save for specified filetypes
-- "python",
},
},
disabled = { -- disable formatting capabilities for the listed language servers
-- "sumneko_lua",
},
timeout_ms = 1000, -- default format timeout
},
-- easily add or disable built in mappings added during LSP attaching
mappings = {
n = {},
},
["server-settings"] = {},
},
mappings = {
-- first key is the mode
n = {
-- second key is the lefthand side of the map
-- mappings seen under group name "Buffer"
["<leader>bb"] = {
"<cmd>tabnew<cr>",
desc = "New tab",
},
["<leader>bc"] = {
"<cmd>BufferLinePickClose<cr>",
desc = "Pick to close",
},
["<leader>bj"] = {
"<cmd>BufferLinePick<cr>",
desc = "Pick to jump",
},
["<leader>bt"] = {
"<cmd>BufferLineSortByTabs<cr>",
desc = "Sort by tabs",
},
},
t = {},
},
-- Customize Heirline options
heirline = {
colors = function(colors)
colors.bg = "#282828"
colors.section_bg = "#282828"
-- colors.fg = "#458588"
colors.section_fg = "#458588"
return colors
end,
attributes = {
git_branch = {
bold = true,
}, -- bold the git branch statusline component
mode = {
bold = true,
},
},
-- -- Customize if icons should be highlighted
icon_highlights = {
breadcrumbs = false, -- LSP symbols in the breadcrumbs
file_icon = {
-- winbar = false, -- Filetype icon in the winbar inactive windows
-- statusline = true, -- Filetype icon in the statusline
},
},
},
-- Configure plugins
plugins = {
["heirline"] = function()
return {
-- Status line:
{
hl = { fg = "fg", bg = "bg" },
astronvim.status.component.git_branch(),
astronvim.status.component.mode(),
astronvim.status.component.fill(),
astronvim.status.component.lsp(),
astronvim.status.component.treesitter(),
astronvim.status.component.nav { scrollbar = false, percentage = false, padding = { left = 1 } },
astronvim.status.component.mode { surround = { separator = "right" } },
},
-- Winbar:
{
hl = { fg = "fg", bg = "bg" },
astronvim.status.component.file_info {
filename = { modify = ":p:." },
padding = { left = 1, right = 1 },
},
{ provider = "::" },
astronvim.status.component.breadcrumbs { icon = { hl = true }, padding = { left = 1 } },
astronvim.status.component.fill(),
astronvim.status.component.git_diff(),
astronvim.status.component.diagnostics(),
},
}
end,
init = {
-- You can disable default plugins as follows:
["goolord/alpha-nvim"] = {
disable = true,
},
-- pin function to the top
{ "nvim-treesitter/nvim-treesitter-context" },
["nvim-treesitter/nvim-treesitter"] = { run = ':echo "No TSUpdate!"' },
-- color scheme
{ "ellisonleao/gruvbox.nvim" },
-- split maximizer
{ "szw/vim-maximizer" },
-- -- Rust support
{
"simrat39/rust-tools.nvim",
after = { "mason-lspconfig.nvim" },
-- Is configured via the server_registration_override installed below!
config = function()
require("rust-tools").setup {
server = astronvim.lsp.server_settings "rust_analyzer",
tools = {
inlay_hints = {
parameter_hints_prefix = " ",
other_hints_prefix = " ",
},
},
}
end,
},
{
"Saecki/crates.nvim",
after = "nvim-cmp",
config = function()
require("crates").setup()
astronvim.add_cmp_source {
name = "crates",
priority = 1100,
}
-- Crates mappings:
local map = vim.api.nvim_set_keymap
map("n", "<leader>Ct", ":lua require('crates').toggle()<cr>", {
desc = "Toggle extra crates.io information",
})
map("n", "<leader>Cr", ":lua require('crates').reload()<cr>", {
desc = "Reload information from crates.io",
})
map("n", "<leader>CU", ":lua require('crates').upgrade_crate()<cr>", {
desc = "Upgrade a crate",
})
map("v", "<leader>CU", ":lua require('crates').upgrade_crates()<cr>", {
desc = "Upgrade selected crates",
})
map("n", "<leader>CA", ":lua require('crates').upgrade_all_crates()<cr>", {
desc = "Upgrade all crates",
})
end,
},
-- typescript:
{
"jose-elias-alvarez/typescript.nvim",
after = "mason-lspconfig.nvim",
config = function()
require("typescript").setup {
server = astronvim.lsp.server_settings "tsserver",
}
end,
},
-- Tools
{ "tpope/vim-fugitive" },
{
"kylechui/nvim-surround",
config = function() require("nvim-surround").setup {} end,
},
{
"ggandor/leap.nvim",
config = function() require("leap").set_default_keymaps() end,
},
},
["null-ls"] = function(config) -- overrides `require("null-ls").setup(config)`
local null_ls = require "null-ls"
local vale = null_ls.builtins.diagnostics.vale
vale["filetypes"] = { "markdown", "tex", "asciidoc", "html" }
-- Check supported formatters and linters
config.sources = {
null_ls.builtins.code_actions.shellcheck, -- Set a linter
null_ls.builtins.diagnostics.actionlint,
null_ls.builtins.diagnostics.eslint,
null_ls.builtins.diagnostics.fish,
null_ls.builtins.diagnostics.gitlint,
null_ls.builtins.diagnostics.luacheck,
null_ls.builtins.diagnostics.markdownlint,
null_ls.builtins.diagnostics.mypy,
null_ls.builtins.diagnostics.shellcheck,
vale,
null_ls.builtins.diagnostics.vulture,
null_ls.builtins.diagnostics.yamllint,
-- Set a formatter
null_ls.builtins.formatting.black,
null_ls.builtins.formatting.jq,
null_ls.builtins.formatting.prettier,
null_ls.builtins.formatting.shellharden,
null_ls.builtins.formatting.stylua,
}
return config
end,
treesitter = { -- overrides `require("treesitter").setup(...)`
auto_install = true,
ensure_installed = {
"lua",
"vim",
"help",
"rust",
"typescript",
"tsx",
"javascript",
"kotlin",
"prisma",
"css",
"jsdoc",
"sql",
"scss",
"html",
"swift",
"markdown",
},
},
telescope = {
file_ignore_patterns = { "node_modules", ".idea" },
},
["mason-lspconfig"] = { -- overrides `require("mason-lspconfig").setup(...)`
ensure_installed = { "tsserver", "html", "cssls", "tailwindcss", "sumneko_lua", "emmet_ls", "rust_analyzer" },
},
["mason-null-ls"] = { -- overrides `require("mason-null-ls").setup(...)`
ensure_installed = { "prettier", "stylua" },
},
["mason-nvim-dap"] = { -- overrides `require("mason-nvim-dap").setup(...)`
},
},
-- LuaSnip Options
luasnip = {
-- Extend filetypes
filetype_extend = {
-- javascript = { "javascriptreact" },
},
-- Configure luasnip loaders (vscode, lua, and/or snipmate)
vscode = {
-- Add paths for including more VS Code style snippets in luasnip
paths = {},
},
},
cmp = {
source_priority = {
nvim_lsp = 1000,
luasnip = 750,
buffer = 500,
path = 250,
},
},
-- Modify which-key registration (Use this with mappings table in the above.)
["which-key"] = {
register = {
n = {
["<leader>"] = {
["b"] = {
name = "Buffer",
},
},
},
},
},
polish = function()
local map = vim.api.nvim_set_keymap
local unmap = vim.api.nvim_del_keymap
unmap("n", "<leader>sm")
map("n", "<leader>sm", ":MaximizerToggle<cr>", {
desc = "close split",
})
vim.opt.background = "dark"
end,
}
return config