|
|
|
|
@@ -1,16 +1,16 @@
|
|
|
|
|
return {
|
|
|
|
|
-- 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 = "nightly", -- 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
|
|
|
|
|
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 = "nightly", -- 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_quit = false, -- automatically quit the current session after a successful update
|
|
|
|
|
remotes = { -- easily add new remotes to track
|
|
|
|
|
auto_quit = false, -- automatically quit the current session after a successful update
|
|
|
|
|
remotes = { -- easily add new remotes to track
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
@@ -18,17 +18,14 @@ return {
|
|
|
|
|
colorscheme = "astrodark",
|
|
|
|
|
|
|
|
|
|
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
|
|
|
|
diagnostics = {
|
|
|
|
|
virtual_text = true,
|
|
|
|
|
underline = true,
|
|
|
|
|
},
|
|
|
|
|
diagnostics = { virtual_text = true, underline = true },
|
|
|
|
|
|
|
|
|
|
lsp = {
|
|
|
|
|
-- customize lsp formatting options
|
|
|
|
|
formatting = {
|
|
|
|
|
-- control auto formatting on save
|
|
|
|
|
format_on_save = {
|
|
|
|
|
enabled = false, -- enable or disable format on save globally
|
|
|
|
|
enabled = false, -- enable or disable format on save globally
|
|
|
|
|
allow_filetypes = { -- enable format on save for specified filetypes only
|
|
|
|
|
-- "go",
|
|
|
|
|
},
|
|
|
|
|
@@ -57,7 +54,14 @@ return {
|
|
|
|
|
performance = {
|
|
|
|
|
rtp = {
|
|
|
|
|
-- customize default disabled vim plugins
|
|
|
|
|
disabled_plugins = { "tohtml", "gzip", "matchit", "zipPlugin", "netrwPlugin", "tarPlugin" },
|
|
|
|
|
disabled_plugins = {
|
|
|
|
|
"tohtml",
|
|
|
|
|
"gzip",
|
|
|
|
|
"matchit",
|
|
|
|
|
"zipPlugin",
|
|
|
|
|
"netrwPlugin",
|
|
|
|
|
"tarPlugin",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
@@ -66,6 +70,18 @@ return {
|
|
|
|
|
-- augroups/autocommands and custom filetypes also this just pure lua so
|
|
|
|
|
-- anything that doesn't fit in the normal config locations above can go here
|
|
|
|
|
polish = function()
|
|
|
|
|
local rt = require "rust-tools"
|
|
|
|
|
|
|
|
|
|
rt.setup {
|
|
|
|
|
server = {
|
|
|
|
|
on_attach = function(_, bufnr)
|
|
|
|
|
-- Hover actions
|
|
|
|
|
vim.keymap.set("n", "<C-space>", rt.hover_actions.hover_actions, { buffer = bufnr })
|
|
|
|
|
-- Code action groups
|
|
|
|
|
vim.keymap.set("n", "<Leader>a", rt.code_action_group.code_action_group, { buffer = bufnr })
|
|
|
|
|
end,
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
-- Set up custom filetypes
|
|
|
|
|
-- vim.filetype.add {
|
|
|
|
|
-- extension = {
|
|
|
|
|
|