Rewrite for AstroNvim v3
This commit is contained in:
parent
c21956e5d1
commit
7119e95235
501
init.lua
501
init.lua
@ -1,6 +1,8 @@
|
|||||||
-- AstroNvim Configuration Table
|
-- AstroNvim Configuration Table
|
||||||
-- All configuration changes should go inside of the table below
|
-- All configuration changes should go inside of the table below
|
||||||
|
|
||||||
|
-- A split up user configuration example can be found at: https://github.com/AstroNvim/split_user_example
|
||||||
|
|
||||||
-- You can think of a Lua "table" as a dictionary like data structure the
|
-- You can think of a Lua "table" as a dictionary like data structure the
|
||||||
-- normal format is "key = value". These also handle array like data structures
|
-- normal format is "key = value". These also handle array like data structures
|
||||||
-- where a value with no key simply has an implicit numeric key
|
-- where a value with no key simply has an implicit numeric key
|
||||||
@ -15,7 +17,6 @@ local config = {
|
|||||||
pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)
|
pin_plugins = nil, -- nil, true, false (nil will pin plugins on stable only)
|
||||||
skip_prompts = false, -- skip prompts about breaking changes
|
skip_prompts = false, -- skip prompts about breaking changes
|
||||||
show_changelog = true, -- show the changelog after performing an update
|
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
|
auto_quit = false, -- automatically quit the current session after a successful update
|
||||||
-- remotes = { -- easily add new remotes to track
|
-- remotes = { -- easily add new remotes to track
|
||||||
-- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url
|
-- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url
|
||||||
@ -24,7 +25,7 @@ local config = {
|
|||||||
-- },
|
-- },
|
||||||
},
|
},
|
||||||
-- Set colorscheme to use
|
-- Set colorscheme to use
|
||||||
colorscheme = "default_theme",
|
colorscheme = "astrodark",
|
||||||
-- Add highlight groups in any theme
|
-- Add highlight groups in any theme
|
||||||
highlights = {
|
highlights = {
|
||||||
-- init = { -- this table overrides highlights in all themes
|
-- init = { -- this table overrides highlights in all themes
|
||||||
@ -43,23 +44,19 @@ local config = {
|
|||||||
spell = false, -- sets vim.opt.spell
|
spell = false, -- sets vim.opt.spell
|
||||||
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
|
signcolumn = "auto", -- sets vim.opt.signcolumn to auto
|
||||||
wrap = false, -- sets vim.opt.wrap
|
wrap = false, -- sets vim.opt.wrap
|
||||||
|
|
||||||
-- Treesitter
|
|
||||||
foldenable = false,
|
|
||||||
foldexpr = "nvim_treesitter#foldexpr()", -- set Treesitter based folding
|
|
||||||
foldmethod = "expr",
|
|
||||||
},
|
},
|
||||||
g = {
|
g = {
|
||||||
mapleader = " ", -- sets vim.g.mapleader
|
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
|
cmp_enabled = true, -- enable completion at start
|
||||||
autopairs_enabled = true, -- enable autopairs at start
|
autopairs_enabled = true, -- enable autopairs at start
|
||||||
diagnostics_enabled = true, -- enable diagnostics at start
|
diagnostics_mode = 3, -- set the visibility of diagnostics in the UI (0=off, 1=only show in status line, 2=virtual text off, 3=all on)
|
||||||
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
|
||||||
|
-- Copilot
|
||||||
copilot_no_tab_map = true,
|
copilot_no_tab_map = true,
|
||||||
copilot_assume_mapped = true,
|
copilot_assume_mapped = true,
|
||||||
copilot_tab_fallback = "",
|
copilot_tab_fallback = "",
|
||||||
|
|
||||||
-- Taglist
|
-- Taglist
|
||||||
Tlist_Use_Right_Window = 1,
|
Tlist_Use_Right_Window = 1,
|
||||||
Tlist_GainFocus_On_ToggleOpen = 1,
|
Tlist_GainFocus_On_ToggleOpen = 1,
|
||||||
@ -77,64 +74,8 @@ local config = {
|
|||||||
-- return local_vim
|
-- return local_vim
|
||||||
-- end,
|
-- end,
|
||||||
|
|
||||||
-- Set dashboard header
|
|
||||||
header = {
|
|
||||||
" █████ ███████ ████████ ██████ ██████",
|
|
||||||
"██ ██ ██ ██ ██ ██ ██ ██",
|
|
||||||
"███████ ███████ ██ ██████ ██ ██",
|
|
||||||
"██ ██ ██ ██ ██ ██ ██ ██",
|
|
||||||
"██ ██ ███████ ██ ██ ██ ██████",
|
|
||||||
" ",
|
|
||||||
" ███ ██ ██ ██ ██ ███ ███",
|
|
||||||
" ████ ██ ██ ██ ██ ████ ████",
|
|
||||||
" ██ ██ ██ ██ ██ ██ ██ ████ ██",
|
|
||||||
" ██ ██ ██ ██ ██ ██ ██ ██ ██",
|
|
||||||
" ██ ████ ████ ██ ██ ██",
|
|
||||||
},
|
|
||||||
-- Default theme configuration
|
|
||||||
default_theme = {
|
|
||||||
-- Modify the color palette for the default theme
|
|
||||||
colors = {
|
|
||||||
fg = "#abb2bf",
|
|
||||||
bg = "#1e222a",
|
|
||||||
},
|
|
||||||
highlights = function(hl) -- or a function that returns a new table of colors to set
|
|
||||||
local C = require "default_theme.colors"
|
|
||||||
|
|
||||||
hl.Normal = { fg = C.fg, bg = C.bg }
|
|
||||||
|
|
||||||
-- New approach instead of diagnostic_style
|
|
||||||
hl.DiagnosticError.italic = true
|
|
||||||
hl.DiagnosticHint.italic = true
|
|
||||||
hl.DiagnosticInfo.italic = true
|
|
||||||
hl.DiagnosticWarn.italic = true
|
|
||||||
|
|
||||||
return hl
|
|
||||||
end,
|
|
||||||
-- enable or disable highlighting for extra plugins
|
|
||||||
plugins = {
|
|
||||||
aerial = true,
|
|
||||||
beacon = false,
|
|
||||||
bufferline = true,
|
|
||||||
dashboard = true,
|
|
||||||
highlighturl = true,
|
|
||||||
hop = false,
|
|
||||||
indent_blankline = true,
|
|
||||||
lightspeed = false,
|
|
||||||
["neo-tree"] = true,
|
|
||||||
notify = true,
|
|
||||||
["nvim-tree"] = false,
|
|
||||||
["nvim-web-devicons"] = true,
|
|
||||||
rainbow = true,
|
|
||||||
symbols_outline = false,
|
|
||||||
telescope = true,
|
|
||||||
vimwiki = false,
|
|
||||||
["which-key"] = true,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
|
||||||
diagnostics = {
|
diagnostics = {
|
||||||
virtual_text = true,
|
|
||||||
underline = true,
|
underline = true,
|
||||||
},
|
},
|
||||||
-- Extend LSP configuration
|
-- Extend LSP configuration
|
||||||
@ -144,10 +85,20 @@ local config = {
|
|||||||
-- "pyright"
|
-- "pyright"
|
||||||
},
|
},
|
||||||
formatting = {
|
formatting = {
|
||||||
format_on_save = false, -- enable or disable auto formatting on save
|
-- control auto formatting on save
|
||||||
disabled = { -- disable formatting capabilities for the listed clients
|
format_on_save = {
|
||||||
-- "sumneko_lua",
|
enabled = false, -- 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
|
||||||
|
-- "lua_ls",
|
||||||
|
},
|
||||||
|
timeout_ms = 1000, -- default format timeout
|
||||||
-- filter = function(client) -- fully override the default formatting function
|
-- filter = function(client) -- fully override the default formatting function
|
||||||
-- return true
|
-- return true
|
||||||
-- end
|
-- end
|
||||||
@ -156,19 +107,33 @@ local config = {
|
|||||||
mappings = {
|
mappings = {
|
||||||
n = {
|
n = {
|
||||||
-- ["<leader>lf"] = false -- disable formatting keymap
|
-- ["<leader>lf"] = false -- disable formatting keymap
|
||||||
|
["<leader>c"] = {
|
||||||
|
function()
|
||||||
|
local bufs = vim.fn.getbufinfo { buflisted = true }
|
||||||
|
require("astronvim.utils.buffer").close(0)
|
||||||
|
if require("astronvim.utils").is_available "alpha-nvim" and not bufs[2] then require("alpha").start(true) end
|
||||||
|
end,
|
||||||
|
desc = "Close buffer",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- add to the global LSP on_attach function
|
-- add to the global LSP on_attach function
|
||||||
-- on_attach = function(client, bufnr)
|
-- on_attach = function(client, bufnr)
|
||||||
-- end,
|
-- end,
|
||||||
|
|
||||||
-- override the mason server-registration function
|
-- override the LSP setup handler function based on server name
|
||||||
-- server_registration = function(server, opts)
|
-- setup_handlers = {
|
||||||
-- require("lspconfig")[server].setup(opts)
|
-- -- first function changes the default setup handler
|
||||||
|
-- function(server, opts) require("lspconfig")[server].setup(opts) end,
|
||||||
|
-- -- keys for a specific server name will be used for that LSP
|
||||||
|
-- lua_ls = function(server, opts)
|
||||||
|
-- -- custom lua_ls setup handler
|
||||||
|
-- require("lspconfig")["lua_ls"].setup(opts)
|
||||||
-- end,
|
-- end,
|
||||||
|
-- },
|
||||||
|
|
||||||
-- Add overrides for LSP server settings, the keys are the name of the server
|
-- Add overrides for LSP server settings, the keys are the name of the server
|
||||||
["server-settings"] = {
|
config = {
|
||||||
-- example for addings schemas to yamlls
|
-- example for addings schemas to yamlls
|
||||||
-- yamlls = { -- override table for require("lspconfig").yamlls.setup({...})
|
-- yamlls = { -- override table for require("lspconfig").yamlls.setup({...})
|
||||||
-- settings = {
|
-- settings = {
|
||||||
@ -183,10 +148,9 @@ local config = {
|
|||||||
-- },
|
-- },
|
||||||
clangd = {
|
clangd = {
|
||||||
capabilities = { offsetEncoding = "utf-8" },
|
capabilities = { offsetEncoding = "utf-8" },
|
||||||
}
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
},
|
||||||
-- Mapping data with "desc" stored directly by vim.keymap.set().
|
-- Mapping data with "desc" stored directly by vim.keymap.set().
|
||||||
--
|
--
|
||||||
-- Please use this mappings table to set keyboard mapping since this is the
|
-- Please use this mappings table to set keyboard mapping since this is the
|
||||||
@ -201,12 +165,18 @@ local config = {
|
|||||||
["<leader>bc"] = { "<cmd>BufferLinePickClose<cr>", desc = "Pick to close" },
|
["<leader>bc"] = { "<cmd>BufferLinePickClose<cr>", desc = "Pick to close" },
|
||||||
["<leader>bj"] = { "<cmd>BufferLinePick<cr>", desc = "Pick to jump" },
|
["<leader>bj"] = { "<cmd>BufferLinePick<cr>", desc = "Pick to jump" },
|
||||||
["<leader>bt"] = { "<cmd>BufferLineSortByTabs<cr>", desc = "Sort by tabs" },
|
["<leader>bt"] = { "<cmd>BufferLineSortByTabs<cr>", desc = "Sort by tabs" },
|
||||||
["<leader>uD"] = { "<cmd>Alpha<cr>", desc = "Alpha dashboard" },
|
-- tables with the `name` key will be registered with which-key if it's installed
|
||||||
|
-- this is useful for naming menus
|
||||||
|
["<leader>b"] = { name = "Buffers" },
|
||||||
|
-- quick save
|
||||||
|
-- ["<C-s>"] = { ":w!<cr>", desc = "Save File" }, -- change description but the same command
|
||||||
|
|
||||||
-- Debugger mappings
|
-- Debugger mappings
|
||||||
|
["<leader>d"] = { name = "Debugger" },
|
||||||
|
["<leader>dl"] = { name = "Load launch.json" },
|
||||||
-- Config loading
|
-- Config loading
|
||||||
["<leader>dlc"] = { function() require("dap.ext.vscode").load_launchjs(nil, { cppdbg = { "c", "cpp", "asm" } }) end, desc = "C/C++/asm" },
|
["<leader>dlc"] = { function() require("dap.ext.vscode").load_launchjs(nil, { cppdbg = { "c", "cpp", "asm" } }) end, desc =
|
||||||
|
"C/C++/asm" },
|
||||||
-- Function keys mappings
|
-- Function keys mappings
|
||||||
["<F5>"] = { function() require("dap").continue() end, desc = "Debugger: Start" },
|
["<F5>"] = { function() require("dap").continue() end, desc = "Debugger: Start" },
|
||||||
["<F17>"] = { function() require("dap").terminate() end, desc = "Debugger: Stop" }, -- Shift+F5
|
["<F17>"] = { function() require("dap").terminate() end, desc = "Debugger: Stop" }, -- Shift+F5
|
||||||
@ -216,36 +186,30 @@ local config = {
|
|||||||
["<F10>"] = { function() require("dap").step_over() end, desc = "Debugger: Step Over" },
|
["<F10>"] = { function() require("dap").step_over() end, desc = "Debugger: Step Over" },
|
||||||
["<F11>"] = { function() require("dap").step_into() end, desc = "Debugger: Step Into" },
|
["<F11>"] = { function() require("dap").step_into() end, desc = "Debugger: Step Into" },
|
||||||
["<F23>"] = { function() require("dap").step_out() end, desc = "Debugger: Step Out" }, -- Shift+F11
|
["<F23>"] = { function() require("dap").step_out() end, desc = "Debugger: Step Out" }, -- Shift+F11
|
||||||
|
|
||||||
-- Breakpoints
|
-- Breakpoints
|
||||||
["<leader>db"] = { function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint (F9)" },
|
["<leader>db"] = { function() require("dap").toggle_breakpoint() end, desc = "Toggle Breakpoint (F9)" },
|
||||||
["<leader>dB"] = { function() require("dap").clear_breakpoints() end, desc = "Clear Breakpoints" },
|
["<leader>dB"] = { function() require("dap").clear_breakpoints() end, desc = "Clear Breakpoints" },
|
||||||
|
|
||||||
-- Session actions
|
-- Session actions
|
||||||
["<leader>dc"] = { function() require("dap").continue() end, desc = "Start/Continue (F5)" },
|
["<leader>dc"] = { function() require("dap").continue() end, desc = "Start/Continue (F5)" },
|
||||||
["<leader>dp"] = { function() require("dap").pause() end, desc = "Pause (F6)" },
|
["<leader>dp"] = { function() require("dap").pause() end, desc = "Pause (F6)" },
|
||||||
["<leader>dr"] = { function() require("dap").restart_frame() end, desc = "Restart (C-F5)" },
|
["<leader>dr"] = { function() require("dap").restart_frame() end, desc = "Restart (C-F5)" },
|
||||||
["<leader>dq"] = { function() require("dap").close() end, desc = "Close Session" },
|
["<leader>dq"] = { function() require("dap").close() end, desc = "Close Session" },
|
||||||
["<leader>dQ"] = { function() require("dap").terminate() end, desc = "Terminate Session (S-F5)" },
|
["<leader>dQ"] = { function() require("dap").terminate() end, desc = "Terminate Session (S-F5)" },
|
||||||
|
|
||||||
-- Step
|
-- Step
|
||||||
["<leader>di"] = { function() require("dap").step_into() end, desc = "Step Into (F11)" },
|
["<leader>di"] = { function() require("dap").step_into() end, desc = "Step Into (F11)" },
|
||||||
["<leader>do"] = { function() require("dap").step_over() end, desc = "Step Over (F10)" },
|
["<leader>do"] = { function() require("dap").step_over() end, desc = "Step Over (F10)" },
|
||||||
["<leader>dO"] = { function() require("dap").step_out() end, desc = "Step Out (S-F11)" },
|
["<leader>dO"] = { function() require("dap").step_out() end, desc = "Step Out (S-F11)" },
|
||||||
|
|
||||||
-- Repls (debugger)
|
-- Repls (debugger)
|
||||||
["<leader>dR"] = { function() require("dap").repl.toggle() end, desc = "Toggle REPL" },
|
["<leader>dR"] = { function() require("dap").repl.toggle() end, desc = "Toggle REPL" },
|
||||||
|
|
||||||
-- Dap-UI
|
-- Dap-UI
|
||||||
["<leader>du"] = { function() require("dapui").toggle() end, desc = "Toggle Debugger UI" },
|
["<leader>du"] = { function() require("dapui").toggle() end, desc = "Toggle Debugger UI" },
|
||||||
["<leader>dh"] = { function() require("dap.ui.widgets").hover() end, desc = "Debugger Hover" },
|
["<leader>dh"] = { function() require("dap.ui.widgets").hover() end, desc = "Debugger Hover" },
|
||||||
|
|
||||||
-- Mardown preview
|
-- Mardown preview
|
||||||
["<leader>mp"] = { "<cmd>MarkdownPreview<cr>", desc = "Markdown preview" },
|
["<leader>mp"] = { "<cmd>MarkdownPreview<cr>", desc = "Markdown preview" },
|
||||||
["<leader>ms"] = { "<cmd>MarkdownPreviewStop<cr>", desc = "Markdown preview stop" },
|
["<leader>ms"] = { "<cmd>MarkdownPreviewStop<cr>", desc = "Markdown preview stop" },
|
||||||
["<leader>mt"] = { "<cmd>MarkdownPreviewToggle<cr>", desc = "Markdown preview toggle" },
|
["<leader>mt"] = { "<cmd>MarkdownPreviewToggle<cr>", desc = "Markdown preview toggle" },
|
||||||
|
|
||||||
-- Vimtex mappings
|
-- Vimtex mappings
|
||||||
|
["<leader>x"] = { name = "LaTeX" },
|
||||||
["<leader>xi"] = { "<cmd>VimtexInfo<cr>", desc = "Info" },
|
["<leader>xi"] = { "<cmd>VimtexInfo<cr>", desc = "Info" },
|
||||||
["<leader>xI"] = { "<cmd>VimtexInfoFull<cr>", desc = "Full info" },
|
["<leader>xI"] = { "<cmd>VimtexInfoFull<cr>", desc = "Full info" },
|
||||||
["<leader>xt"] = { "<cmd>VimtexTocOpen<cr>", desc = "Open table of contents" },
|
["<leader>xt"] = { "<cmd>VimtexTocOpen<cr>", desc = "Open table of contents" },
|
||||||
@ -268,71 +232,169 @@ local config = {
|
|||||||
["<leader>xX"] = { "<cmd>VimtexReloadState<cr>", desc = "Reload the state for the current buffer" },
|
["<leader>xX"] = { "<cmd>VimtexReloadState<cr>", desc = "Reload the state for the current buffer" },
|
||||||
["<leader>xs"] = { "<cmd>VimtexToggleMain<cr>", desc = "Set current file as 'current project'" },
|
["<leader>xs"] = { "<cmd>VimtexToggleMain<cr>", desc = "Set current file as 'current project'" },
|
||||||
["<leader>xa"] = { "<cmd>VimtexContextMenu<cr>", desc = "Show context menu" },
|
["<leader>xa"] = { "<cmd>VimtexContextMenu<cr>", desc = "Show context menu" },
|
||||||
|
|
||||||
-- Taglist
|
-- Taglist
|
||||||
["<leader>ft"] = { "<cmd>TlistToggle<cr>", desc = "Tagbar toggle " },
|
["<leader>fT"] = { "<cmd>TlistToggle<cr>", desc = "Tagbar toggle " },
|
||||||
|
|
||||||
-- Trouble
|
-- Trouble
|
||||||
["<leader>ttx"] = { "<cmd>TroubleToggle<cr>", desc = "Toggle Trouble" },
|
["<leader>ft"] = { name = "trouble" },
|
||||||
["<leader>ttw"] = { "<cmd>TroubleToggle workspace_diagnostics<cr>", desc = "Workspace diagnostics" },
|
["<leader>ftx"] = { "<cmd>TroubleToggle<cr>", desc = "Toggle Trouble" },
|
||||||
["<leader>ttd"] = { "<cmd>TroubleToggle document_diagnostics<cr>", desc = "Document diagnostics" },
|
["<leader>ftw"] = { "<cmd>TroubleToggle workspace_diagnostics<cr>", desc = "Workspace diagnostics" },
|
||||||
["<leader>ttq"] = { "<cmd>TroubleToggle quickfix<cr>", desc = "Quickfix" },
|
["<leader>ftd"] = { "<cmd>TroubleToggle document_diagnostics<cr>", desc = "Document diagnostics" },
|
||||||
["<leader>ttl"] = { "<cmd>TroubleToggle loclist<cr>", desc = "Loc List" },
|
["<leader>ftq"] = { "<cmd>TroubleToggle quickfix<cr>", desc = "Quickfix" },
|
||||||
["<leader>ttR"] = { "<cmd>TroubleToggle lsp_references<cr>", desc = "Lsp references" },
|
["<leader>ftl"] = { "<cmd>TroubleToggle loclist<cr>", desc = "Loc List" },
|
||||||
["<leader>ttt"] = { "<cmd>TodoTrouble<cr>", desc = "Todo Trouble" },
|
["<leader>ftR"] = { "<cmd>TroubleToggle lsp_references<cr>", desc = "Lsp references" },
|
||||||
|
["<leader>ftt"] = { "<cmd>TodoTrouble<cr>", desc = "Todo Trouble" },
|
||||||
-- Autosave
|
-- Autosave
|
||||||
["<C-s>"] = { "<cmd>ASToggle<cr>", desc = "Toggle autosave" },
|
["<C-s>"] = { "<cmd>ASToggle<cr>", desc = "Toggle autosave" },
|
||||||
|
["<leader>fs"] = { "<cmd>ASToggle<cr>", desc = "Toggle autosave" },
|
||||||
|
-- Carbon code sharing
|
||||||
-- quick save
|
["<leader>S"] = { "CarbonNow", desc = "Share code on Carbon", silent = true },
|
||||||
-- ["<C-s>"] = { ":w!<cr>", desc = "Save File" }, -- change description but the same command
|
},
|
||||||
|
v = {
|
||||||
|
-- Carbon code sharing
|
||||||
|
["<leader>c"] = { ":CarbonNow<CR>", desc = "Share code on Carbon", silent = true },
|
||||||
},
|
},
|
||||||
t = {
|
t = {
|
||||||
-- setting a mapping to false will disable it
|
-- setting a mapping to false will disable it
|
||||||
-- ["<esc>"] = false,
|
-- ["<esc>"] = false,
|
||||||
},
|
},
|
||||||
v = {
|
|
||||||
-- Carbon code sharing
|
|
||||||
["<leader>c"] = { ":CarbonNow<CR>", desc = "Share code on Carbon", silent = true },
|
|
||||||
|
|
||||||
},
|
},
|
||||||
i = {
|
-- Configure require("lazy").setup() options
|
||||||
-- ["<Tab>"] = { "copilot#Accept('<CR>')", silent = true, expr = true },
|
lazy = {
|
||||||
}
|
defaults = { lazy = true },
|
||||||
|
performance = {
|
||||||
|
rtp = {
|
||||||
|
-- customize default disabled vim plugins
|
||||||
|
disabled_plugins = {
|
||||||
|
"tohtml",
|
||||||
|
"gzip",
|
||||||
|
"matchit",
|
||||||
|
"zipPlugin",
|
||||||
|
"netrwPlugin",
|
||||||
|
"tarPlugin",
|
||||||
|
"matchparen",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- Configure plugins
|
-- Configure plugins
|
||||||
plugins = {
|
plugins = {
|
||||||
init = {
|
|
||||||
-- You can disable default plugins as follows:
|
-- You can disable default plugins as follows:
|
||||||
-- ["goolord/alpha-nvim"] = { disable = true },
|
-- { "max397574/better-escape.nvim", enabled = false },
|
||||||
|
--
|
||||||
|
-- You can also easily customize additional setup of plugins that is outside of the plugin's setup call
|
||||||
|
-- {
|
||||||
|
-- "L3MON4D3/LuaSnip",
|
||||||
|
-- config = function(plugin, opts)
|
||||||
|
-- require "plugins.configs.luasnip"(plugin, opts) -- include the default astronvim config that calls the setup call
|
||||||
|
-- -- add more custom luasnip configuration such as filetype extend or custom snippets
|
||||||
|
-- local luasnip = require "luasnip"
|
||||||
|
-- luasnip.filetype_extend("javascript", { "javascriptreact" })
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
-- {
|
||||||
|
-- "windwp/nvim-autopairs",
|
||||||
|
-- config = function(plugin, opts)
|
||||||
|
-- require "plugins.configs.nvim-autopairs"(plugin, opts) -- include the default astronvim config that calls the setup call
|
||||||
|
-- -- add more custom autopairs configuration such as custom rules
|
||||||
|
-- local npairs = require "nvim-autopairs"
|
||||||
|
-- local Rule = require "nvim-autopairs.rule"
|
||||||
|
-- local cond = require "nvim-autopairs.conds"
|
||||||
|
-- npairs.add_rules(
|
||||||
|
-- {
|
||||||
|
-- Rule("$", "$", { "tex", "latex" })
|
||||||
|
-- -- don't add a pair if the next character is %
|
||||||
|
-- :with_pair(cond.not_after_regex "%%")
|
||||||
|
-- -- don't add a pair if the previous character is xxx
|
||||||
|
-- :with_pair(
|
||||||
|
-- cond.not_before_regex("xxx", 3)
|
||||||
|
-- )
|
||||||
|
-- -- don't move right when repeat character
|
||||||
|
-- :with_move(cond.none())
|
||||||
|
-- -- don't delete if the next character is xx
|
||||||
|
-- :with_del(cond.not_after_regex "xx")
|
||||||
|
-- -- disable adding a newline when you press <cr>
|
||||||
|
-- :with_cr(cond.none()),
|
||||||
|
-- },
|
||||||
|
-- -- disable for .vim files, but it work for another filetypes
|
||||||
|
-- Rule("a", "a", "-vim")
|
||||||
|
-- )
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
-- By adding to the which-key config and using our helper function you can add more which-key registered bindings
|
||||||
|
-- {
|
||||||
|
-- "folke/which-key.nvim",
|
||||||
|
-- config = function(plugin, opts)
|
||||||
|
-- require "plugins.configs.which-key"(plugin, opts)
|
||||||
|
-- -- Add bindings which show up as group name
|
||||||
|
-- local wk = require "which-key"
|
||||||
|
-- wk.register({
|
||||||
|
-- b = { name = "Buffer" },
|
||||||
|
-- }, { mode = "n", prefix = "<leader>" })
|
||||||
|
-- end,
|
||||||
|
-- },
|
||||||
|
--
|
||||||
|
|
||||||
|
{
|
||||||
|
-- override nvim-cmp plugin
|
||||||
|
"hrsh7th/nvim-cmp",
|
||||||
|
-- override the options table that is used in the `require("cmp").setup()` call
|
||||||
|
opts = function(_, opts)
|
||||||
|
-- opts parameter is the default options table
|
||||||
|
-- the function is lazy loaded so cmp is able to be required
|
||||||
|
local cmp = require "cmp"
|
||||||
|
local luasnip = require "luasnip"
|
||||||
|
-- modify the mapping part of the table
|
||||||
|
opts.mapping["<CR>"] = cmp.mapping.confirm { select = false }
|
||||||
|
opts.mapping["<Tab>"] = cmp.mapping(function(fallback)
|
||||||
|
vim.api.nvim_feedkeys(vim.fn['copilot#Accept'](vim.api.nvim_replace_termcodes('<Tab>', true, true, true)), 'n',
|
||||||
|
true)
|
||||||
|
end)
|
||||||
|
if luasnip.expandable() then
|
||||||
|
luasnip.expand()
|
||||||
|
elseif luasnip.expand_or_jumpable() then
|
||||||
|
luasnip.expand_or_jump()
|
||||||
|
fallback()
|
||||||
|
end
|
||||||
|
opts.experimental = {
|
||||||
|
ghost_text = false -- this feature conflict with copilot.vim's preview.
|
||||||
|
}
|
||||||
|
|
||||||
|
-- return the new table to be used
|
||||||
|
return opts
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
|
||||||
-- You can also add new plugins here as well:
|
-- You can also add new plugins here as well:
|
||||||
-- Add plugins, the packer syntax without the "use"
|
-- Add plugins, the lazy syntax
|
||||||
{ "andweeb/presence.nvim" },
|
|
||||||
{ "ellisonleao/carbon-now.nvim",
|
-- Plugins for other plugins
|
||||||
event = "BufRead",
|
{ "tyru/open-browser.vim", cmd = { "OPenBrowser", "OpenBrowserSearch", "OpenBrowserSmartSearch" } },
|
||||||
|
|
||||||
|
--Social
|
||||||
|
{
|
||||||
|
"andweeb/presence.nvim",
|
||||||
|
event = "UIEnter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"ellisonleao/carbon-now.nvim",
|
||||||
|
cmd = "CarbonNow",
|
||||||
config = function()
|
config = function()
|
||||||
require('carbon-now').setup()
|
require('carbon-now').setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
-- {
|
|
||||||
-- "ray-x/lsp_signature.nvim",
|
|
||||||
-- event = "BufRead",
|
|
||||||
-- config = function()
|
|
||||||
-- require("lsp_signature").setup()
|
|
||||||
-- end,
|
|
||||||
-- },
|
|
||||||
|
|
||||||
|
-- Comments
|
||||||
{
|
{
|
||||||
"folke/todo-comments.nvim",
|
"folke/todo-comments.nvim",
|
||||||
event = "BufRead",
|
event = "BufEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("todo-comments").setup()
|
require("todo-comments").setup()
|
||||||
end,
|
end
|
||||||
},
|
},
|
||||||
{ "folke/trouble.nvim",
|
-- Show todo comments, warnings, errors, ...
|
||||||
requires = "kyazdani42/nvim-web-devicons",
|
{
|
||||||
|
"folke/trouble.nvim",
|
||||||
|
cmd = { "TroubleToggle", "TodoTrouble" },
|
||||||
config = function()
|
config = function()
|
||||||
require("trouble").setup {
|
require("trouble").setup {
|
||||||
-- your configuration comes here
|
-- your configuration comes here
|
||||||
@ -341,54 +403,87 @@ local config = {
|
|||||||
}
|
}
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{ "yegappan/taglist" },
|
-- TOC (functions, macros, ...)
|
||||||
|
{
|
||||||
|
"yegappan/taglist",
|
||||||
|
cmd = "TlistToggle"
|
||||||
|
},
|
||||||
|
|
||||||
-- Code completion
|
-- Code completion
|
||||||
{ "github/copilot.vim" },
|
{
|
||||||
|
"github/copilot.vim",
|
||||||
-- Code testing
|
event = "UIEnter"
|
||||||
-- TBD - no support for GoogleTest yet
|
},
|
||||||
-- { "nvim-neotest/neotest",
|
|
||||||
-- requires = {
|
|
||||||
-- "nvim-lua/plenary.nvim",
|
|
||||||
-- "nvim-treesitter/nvim-treesitter",
|
|
||||||
-- },
|
|
||||||
-- },
|
|
||||||
|
|
||||||
-- PlatformIO
|
-- PlatformIO
|
||||||
{ "normen/vim-pio" },
|
{
|
||||||
|
"normen/vim-pio",
|
||||||
|
event = "BufEnter"
|
||||||
|
},
|
||||||
|
|
||||||
-- Text related
|
-- Text related
|
||||||
{ "lervag/vimtex" }, -- LaTeX
|
{
|
||||||
|
-- LaTeX
|
||||||
|
"lervag/vimtex",
|
||||||
|
event = "BufEnter *.tex"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"iamcco/markdown-preview.nvim",
|
"iamcco/markdown-preview.nvim",
|
||||||
|
event = "BufEnter *.md",
|
||||||
run = function() vim.fn["mkdp#util#install"]() end,
|
run = function() vim.fn["mkdp#util#install"]() end,
|
||||||
},
|
},
|
||||||
{ "weirongxu/plantuml-previewer.vim",
|
|
||||||
requires = { "tyru/open-browser.vim" },
|
-- PlantUML
|
||||||
|
{
|
||||||
|
"weirongxu/plantuml-previewer.vim",
|
||||||
|
event = "BufEnter *.uml",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"aklt/plantuml-syntax",
|
||||||
|
event = "BufEnter *.uml"
|
||||||
},
|
},
|
||||||
{ "aklt/plantuml-syntax" },
|
|
||||||
|
|
||||||
-- Basic editor functionality
|
-- Basic editor functionality
|
||||||
{
|
{
|
||||||
"Pocco81/auto-save.nvim",
|
"Pocco81/auto-save.nvim",
|
||||||
|
event = "UIEnter",
|
||||||
config = function()
|
config = function()
|
||||||
require("auto-save").setup()
|
require("auto-save").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|
||||||
-- We also support a key value style plugin definition similar to NvChad:
|
-- {
|
||||||
-- ["ray-x/lsp_signature.nvim"] = {
|
-- "ray-x/lsp_signature.nvim",
|
||||||
-- event = "BufRead",
|
-- event = "BufRead",
|
||||||
-- config = function()
|
-- config = function()
|
||||||
-- require("lsp_signature").setup()
|
-- require("lsp_signature").setup()
|
||||||
-- end,
|
-- end,
|
||||||
-- },
|
-- },
|
||||||
["rebelot/heirline.nvim"] = { commit = "556666aabb57c227cbb14a996b30b2934e5ff7b1" },
|
|
||||||
},
|
|
||||||
|
|
||||||
-- All other entries override the require("<key>").setup({...}) call for default plugins
|
-- Plugin entries can also be used to override the default options for plugins as well
|
||||||
["null-ls"] = function(config) -- overrides `require("null-ls").setup(config)`
|
{
|
||||||
|
"goolord/alpha-nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
-- customize the dashboard header
|
||||||
|
opts.section.header.val = {
|
||||||
|
" █████ ███████ ████████ ██████ ██████",
|
||||||
|
"██ ██ ██ ██ ██ ██ ██ ██",
|
||||||
|
"███████ ███████ ██ ██████ ██ ██",
|
||||||
|
"██ ██ ██ ██ ██ ██ ██ ██",
|
||||||
|
"██ ██ ███████ ██ ██ ██ ██████",
|
||||||
|
" ",
|
||||||
|
" ███ ██ ██ ██ ██ ███ ███",
|
||||||
|
" ████ ██ ██ ██ ██ ████ ████",
|
||||||
|
" ██ ██ ██ ██ ██ ██ ██ ████ ██",
|
||||||
|
" ██ ██ ██ ██ ██ ██ ██ ██ ██",
|
||||||
|
" ██ ████ ████ ██ ██ ██",
|
||||||
|
}
|
||||||
|
return opts
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"jose-elias-alvarez/null-ls.nvim",
|
||||||
|
opts = function(_, config)
|
||||||
-- config variable is the default configuration table for the setup function call
|
-- config variable is the default configuration table for the setup function call
|
||||||
-- local null_ls = require "null-ls"
|
-- local null_ls = require "null-ls"
|
||||||
|
|
||||||
@ -402,65 +497,63 @@ local config = {
|
|||||||
}
|
}
|
||||||
return config -- return final config table
|
return config -- return final config table
|
||||||
end,
|
end,
|
||||||
treesitter = { -- overrides `require("treesitter").setup(...)`
|
},
|
||||||
|
{
|
||||||
|
"nvim-treesitter/nvim-treesitter",
|
||||||
|
opts = {
|
||||||
-- ensure_installed = { "lua" },
|
-- ensure_installed = { "lua" },
|
||||||
},
|
},
|
||||||
|
},
|
||||||
-- use mason-lspconfig to configure LSP installations
|
-- use mason-lspconfig to configure LSP installations
|
||||||
["mason-lspconfig"] = { -- overrides `require("mason-lspconfig").setup(...)`
|
{
|
||||||
-- ensure_installed = { "sumneko_lua" },
|
"williamboman/mason-lspconfig.nvim",
|
||||||
|
-- overrides `require("mason-lspconfig").setup(...)`
|
||||||
|
opts = {
|
||||||
|
-- ensure_installed = { "lua_ls" },
|
||||||
|
},
|
||||||
},
|
},
|
||||||
-- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
|
-- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
|
||||||
["mason-null-ls"] = { -- overrides `require("mason-null-ls").setup(...)`
|
{
|
||||||
|
"jay-babu/mason-null-ls.nvim",
|
||||||
|
-- overrides `require("mason-null-ls").setup(...)`
|
||||||
|
opts = {
|
||||||
-- ensure_installed = { "prettier", "stylua" },
|
-- ensure_installed = { "prettier", "stylua" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
-- LuaSnip Options
|
{
|
||||||
luasnip = {
|
"jay-babu/mason-nvim-dap.nvim",
|
||||||
-- Add paths for including more VS Code style snippets in luasnip
|
-- overrides `require("mason-nvim-dap").setup(...)`
|
||||||
vscode_snippet_paths = {},
|
opts = {
|
||||||
-- Extend filetypes
|
-- ensure_installed = { "python" },
|
||||||
filetype_extend = {
|
|
||||||
-- javascript = { "javascriptreact" },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
-- CMP Source Priorities
|
|
||||||
-- modify here the priorities of default cmp sources
|
|
||||||
-- higher value == higher priority
|
|
||||||
-- The value can also be set to a boolean for disabling default sources:
|
|
||||||
-- false == disabled
|
|
||||||
-- true == 1000
|
|
||||||
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"] = {
|
|
||||||
-- Add bindings which show up as group name
|
|
||||||
register = {
|
|
||||||
-- first key is the mode, n == normal mode
|
|
||||||
n = {
|
|
||||||
-- second key is the prefix, <leader> prefixes
|
|
||||||
["<leader>"] = {
|
|
||||||
-- third key is the key to bring up next level and its displayed
|
|
||||||
-- group name in which-key top level menu
|
|
||||||
["b"] = { name = "Buffer" },
|
|
||||||
["d"] = {
|
|
||||||
name = "Debugging",
|
|
||||||
["l"] = { name = "Load launch.json" },
|
|
||||||
},
|
|
||||||
["m"] = { name = "Markdown" },
|
|
||||||
["x"] = { name = "LaTeX" },
|
|
||||||
["t"] = {
|
|
||||||
name = "Terminal",
|
|
||||||
["t"] = { name = "Trouble" },
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
-- Customize Heirline options
|
||||||
|
heirline = {
|
||||||
|
-- -- Customize different separators between sections
|
||||||
|
-- separators = {
|
||||||
|
-- breadcrumbs = " > ",
|
||||||
|
-- tab = { "", "" },
|
||||||
|
-- },
|
||||||
|
-- -- Customize colors for each element each element has a `_fg` and a `_bg`
|
||||||
|
-- colors = function(colors)
|
||||||
|
-- colors.git_branch_fg = require("astronvim.utils").get_hlgroup "Conditional"
|
||||||
|
-- return colors
|
||||||
|
-- end,
|
||||||
|
-- -- Customize attributes of highlighting in Heirline components
|
||||||
|
-- attributes = {
|
||||||
|
-- -- styling choices for each heirline element, check possible attributes with `:h attr-list`
|
||||||
|
-- git_branch = { bold = true }, -- bold the git branch statusline component
|
||||||
|
-- },
|
||||||
|
-- -- 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
|
||||||
|
-- tabline = true, -- Filetype icon in the tabline
|
||||||
|
-- },
|
||||||
|
-- },
|
||||||
},
|
},
|
||||||
-- This function is run last and is a good place to configuring
|
-- This function is run last and is a good place to configuring
|
||||||
-- augroups/autocommands and custom filetypes also this just pure lua so
|
-- augroups/autocommands and custom filetypes also this just pure lua so
|
||||||
@ -478,24 +571,6 @@ local config = {
|
|||||||
-- ["~/%.config/foo/.*"] = "fooscript",
|
-- ["~/%.config/foo/.*"] = "fooscript",
|
||||||
-- },
|
-- },
|
||||||
-- }
|
-- }
|
||||||
local function alpha_on_bye(cmd)
|
|
||||||
local bufs = vim.fn.getbufinfo { buflisted = true }
|
|
||||||
vim.cmd(cmd)
|
|
||||||
if require("core.utils").is_available "alpha-nvim" and not bufs[2] then
|
|
||||||
require("alpha").start(true)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
vim.keymap.del("n", "<leader>c")
|
|
||||||
if require("core.utils").is_available "bufdelete.nvim" then
|
|
||||||
vim.keymap.set("n", "<leader>c", function()
|
|
||||||
alpha_on_bye "Bdelete!"
|
|
||||||
end, { desc = "Close buffer" })
|
|
||||||
else
|
|
||||||
vim.keymap.set("n", "<leader>c", function()
|
|
||||||
alpha_on_bye "bdelete!"
|
|
||||||
end, { desc = "Close buffer" })
|
|
||||||
end
|
|
||||||
end,
|
end,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,25 +0,0 @@
|
|||||||
local cmp = require "cmp"
|
|
||||||
local luasnip = require "luasnip"
|
|
||||||
return {
|
|
||||||
preselect = cmp.PreselectMode.None,
|
|
||||||
mapping = {
|
|
||||||
["<CR>"] = cmp.mapping.confirm { select = false },
|
|
||||||
["<Tab>"] = cmp.mapping(function(fallback)
|
|
||||||
vim.api.nvim_feedkeys(vim.fn['copilot#Accept'](vim.api.nvim_replace_termcodes('<Tab>', true, true, true)), 'n',
|
|
||||||
true)
|
|
||||||
end)
|
|
||||||
-- if luasnip.expandable() then
|
|
||||||
-- luasnip.expand()
|
|
||||||
-- elseif luasnip.expand_or_jumpable() then
|
|
||||||
-- luasnip.expand_or_jump()
|
|
||||||
-- fallback()
|
|
||||||
-- end
|
|
||||||
-- end, {
|
|
||||||
-- "i",
|
|
||||||
-- "s",
|
|
||||||
-- }),
|
|
||||||
},
|
|
||||||
experimental = {
|
|
||||||
ghost_text = false -- this feature conflict with copilot.vim's preview.
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user