Skip to content

Instantly share code, notes, and snippets.

@Oyelowo
Created January 31, 2023 11:23
Show Gist options
  • Save Oyelowo/8e256b621e8a20cf75bec21e629a3e50 to your computer and use it in GitHub Desktop.
Save Oyelowo/8e256b621e8a20cf75bec21e629a3e50 to your computer and use it in GitHub Desktop.
my-neovim-setup
-- AstroNvim Configuration Table
-- All configuration changes should go inside of the table below
-- 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
-- where a value with no key simply has an implicit numeric key
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 = "556666a", -- 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
-- remotes = { -- easily add new remotes to track
-- ["remote_name"] = "https://remote_url.come/repo.git", -- full remote url
-- ["remote2"] = "github_user/repo", -- GitHub user/repo shortcut,
-- ["remote3"] = "github_user", -- GitHub user assume AstroNvim fork
-- },
},
-- Set colorscheme to use
colorscheme = "default_theme",
-- Add highlight groups in any theme
highlights = {
-- init = { -- this table overrides highlights in all themes
-- Normal = { bg = "#000000" },
-- }
-- duskfox = { -- a table of overrides/changes to the duskfox theme
-- Normal = { bg = "#000000" },
-- },
},
-- set vim options here (vim.<first_key>.<second_key> = value)
options = {
opt = {
-- set to true or false etc.
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
},
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 = false, -- enable new heirline based bufferline (requires :PackerSync after changing)
},
},
-- If you need more control, you can use the function()...end notation
-- options = function(local_vim)
-- local_vim.opt.relativenumber = true
-- local_vim.g.mapleader = " "
-- local_vim.opt.whichwrap = vim.opt.whichwrap - { 'b', 's' } -- removing option from list
-- local_vim.opt.shortmess = vim.opt.shortmess + { I = true } -- add to option list
--
-- return local_vim
-- end,
-- Set dashboard header
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 = true,
bufferline = true,
cmp = true,
dashboard = true,
highlighturl = true,
hop = false,
indent_blankline = true,
lightspeed = false,
["neo-tree"] = true,
notify = true,
["nvim-tree"] = true,
["nvim-web-devicons"] = true,
rainbow = true,
symbols_outline = true,
telescope = true,
treesitter = true,
vimwiki = true,
["which-key"] = true,
},
},
-- Diagnostics configuration (for vim.diagnostics.config({...})) when diagnostics are on
diagnostics = {
virtual_text = true,
underline = true,
update_in_insert = true,
signs = true,
severity_sort = true,
},
-- Extend LSP configuration
lsp = {
skip_setup = { "rust_analyzer", "tsserver", "denols" }, -- skip lsp setup because rust-tools will do it itself
-- enable servers that you already have installed without mason
servers = {
-- "pyright"
},
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
-- filter = function(client) -- fully override the default formatting function
-- return true
-- end
},
-- easily add or disable built in mappings added during LSP attaching
mappings = {
n = {
-- ["<leader>lf"] = false -- disable formatting keymap
},
},
-- add to the global LSP on_attach function
-- on_attach = function(client, bufnr)
-- end,
-- override the mason server-registration function
-- server_registration = function(server, opts)
-- require("lspconfig")[server].setup(opts)
-- end,
-- Add overrides for LSP server settings, the keys are the name of the server
["server-settings"] = {
rust_analyzer = {
settings = {
["rust-analyzer"] = {
completion = {
postfix = {
-- Disable snippets showing up before proper methods autocompletions
enable = false,
},
},
},
},
},
denols = {
root_dir = require("lspconfig.util").root_pattern("deno.json", "deno.jsonc"),
},
tsserver = {
root_dir = require("lspconfig.util").root_pattern("package.json"),
},
-- For eslint:
eslint = {
root_dir = require("lspconfig.util").root_pattern("package.json", ".eslintrc.json",
".eslintrc.js"),
},
-- example for addings schemas to yamlls
yamlls = { -- override table for require("lspconfig").yamlls.setup({...})
settings = {
yaml = {
schemas = {
["http://json.schemastore.org/github-workflow"] = ".github/workflows/*.{yml,yaml}",
["http://json.schemastore.org/github-action"] = ".github/action.{yml,yaml}",
["http://json.schemastore.org/ansible-stable-2.9"] = "roles/tasks/*.{yml,yaml}",
},
},
},
},
},
},
-- Mapping data with "desc" stored directly by vim.keymap.set().
--
-- Please use this mappings table to set keyboard mapping since this is the
-- lower level configuration and more robust one. (which-key will
-- automatically pick-up stored data by this setting.)
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" },
-- quick save
-- ["<C-s>"] = { ":w!<cr>", desc = "Save File" }, -- change description but the same command
},
t = {
-- setting a mapping to false will disable it
-- ["<esc>"] = false,
},
},
-- Configure plugins
plugins = {
init = {
{
"simrat39/rust-tools.nvim",
after = "mason-lspconfig.nvim", -- make sure to load after mason-lspconfig
config = function()
require("rust-tools").setup {
server = astronvim.lsp.server_settings "rust_analyzer", -- get the server settings and built in capabilities/on_attach
tools = {
inlay_hints = {
-- parameter_hints_prefix = "",
-- other_hints_prefix = ""
parameter_hints_prefix = "",
other_hints_prefix = "",
-- highlight = "",
}
}
}
end,
},
{
"jose-elias-alvarez/typescript.nvim",
after = "mason-lspconfig.nvim",
config = function()
require("typescript").setup {
server = astronvim.lsp.server_settings "tsserver",
}
end,
},
{
"sigmasd/deno-nvim",
after = "mason-lspconfig.nvim",
config = function()
require("deno-nvim").setup {
server = astronvim.lsp.server_settings "denols",
}
end
},
{
"ggandor/leap.nvim",
requires = "tpope/vim-repeat",
keys = { "s", "s" },
config = function()
local leap = require "leap"
leap.set_default_keymaps()
-- bidirectional search in the current window is just a specific case of the
-- multi-window mode.
-- require('leap').leap { target_windows = { vim.fn.win_getid() } }
-- -- searching in all windows (including the current one) on the tab page.
-- require('leap').leap { target_windows = vim.tbl_filter(
-- function(win) return vim.api.nvim_win_get_config(win).focusable end,
-- vim.api.nvim_tabpage_list_wins(0)
-- ) }
end,
-- config = function()
-- require('leap').add_default_mappings()
-- end,
}
,
-- {
-- "kylechui/nvim-surround",
-- tag = "*", -- use for stability; omit to use `main` branch for the latest features
-- config = function()
-- require("nvim-surround").setup({
-- -- configuration here, or leave empty to use defaults
-- })
-- end
-- }
-- ,
{ "mg979/vim-visual-multi",
-- config = function ()
-- require(vvim-visual-multi").setup()
-- end
-- }
}
,
{
"Pocco81/auto-save.nvim",
config = function()
require("auto-save").setup {
-- your config goes here
-- or just leave it empty :)
}
end,
}, {
"echasnovski/mini.nvim",
config = function()
require("mini.move").setup()
end
},
{
"folke/trouble.nvim",
requires = "kyazdani42/nvim-web-devicons",
config = function()
require("trouble").setup {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
end,
}
,
-- You can disable default plugins as follows:
-- ["goolord/alpha-nvim"] = { disable = true },
-- You can also add new plugins here as well:
-- Add plugins, the packer syntax without the "use"
-- { "andweeb/presence.nvim" },
-- {
-- "ray-x/lsp_signature.nvim",
-- event = "BufRead",
-- config = function()
-- require("lsp_signature").setup()
-- end,
-- },
-- We also support a key value style plugin definition similar to NvChad:
["ray-x/lsp_signature.nvim"] = {
event = "BufRead",
config = function()
require("lsp_signature").setup()
end,
},
},
-- All other entries override the require("<key>").setup({...}) call for default plugins
["null-ls"] = function(config) -- overrides `require("null-ls").setup(config)`
-- config variable is the default configuration table for the setup function call
-- local null_ls = require "null-ls"
-- Check supported formatters and linters
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/formatting
-- https://github.com/jose-elias-alvarez/null-ls.nvim/tree/main/lua/null-ls/builtins/diagnostics
config.sources = {
-- Set a formatter
-- null_ls.builtins.formatting.stylua,
-- null_ls.builtins.formatting.prettier,
}
return config -- return final config table
end,
treesitter = { -- overrides `require("treesitter").setup(...)`
-- ensure_installed = { "lua" },
},
-- use mason-lspconfig to configure LSP installations
["mason-lspconfig"] = { -- overrides `require("mason-lspconfig").setup(...)`
ensure_installed = { "sumneko_lua", "rust_analyzer", "tsserver", "denols" },
},
-- use mason-null-ls to configure Formatters/Linter installation for null-ls sources
["mason-null-ls"] = { -- overrides `require("mason-null-ls").setup(...)`
setup_handlers = {
prettier = function()
require("null-ls").register(require("null-ls").builtins.formatting.prettier.with({
condition = function(utils)
return utils.root_has_file("package.json") or
utils.root_has_file(".prettierrc") or
utils.root_has_file(".prettierrc.json") or
utils.root_has_file(".prettierrc.js")
end
}))
end,
-- For prettierd:
prettierd = function()
require("null-ls").register(require("null-ls").builtins.formatting.prettierd.with({
condition = function(utils)
return utils.root_has_file("package.json") or
utils.root_has_file(".prettierrc") or
utils.root_has_file(".prettierrc.json") or
utils.root_has_file(".prettierrc.js")
end
}))
end,
-- For eslint_d:
eslint_d = function()
require("null-ls").register(require("null-ls").builtins.diagnostics.eslint_d.with({
condition = function(utils)
return utils.root_has_file("package.json") or
utils.root_has_file(".eslintrc.json") or
utils.root_has_file(".eslintrc.js")
end
}))
end,
}
-- ensure_installed = { "prettier", "stylua" },
},
["mason-nvim-dap"] = { -- overrides `require("mason-nvim-dap").setup(...)`
-- ensure_installed = { "python" },
},
},
-- 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 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,
},
},
-- Customize Heirline options
heirline = {
-- -- Customize different separators between sections
-- separators = {
-- tab = { "", "" },
-- },
-- -- Customize colors for each element each element has a `_fg` and a `_bg`
-- colors = function(colors)
-- colors.git_branch_fg = astronvim.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
-- },
-- },
},
-- 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" },
},
},
},
},
-- This function is run last and is a good place to configuring
-- 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()
-- Set up custom filetypes
-- vim.filetype.add {
-- extension = {
-- foo = "fooscript",
-- },
-- filename = {
-- ["Foofile"] = "fooscript",
-- },
-- pattern = {
-- ["~/%.config/foo/.*"] = "fooscript",
-- },
-- }
end,
}
return config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment