mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2024-11-04 21:56:28 +00:00
417 lines
10 KiB
Lua
417 lines
10 KiB
Lua
-- Install packer
|
|
local utils = require("utils")
|
|
local install_path = vim.fn.stdpath("data") .. "/site/pack/packer/opt/packer.nvim"
|
|
local packer_bootstrap = false
|
|
if vim.fn.empty(vim.fn.glob(install_path)) > 0 then
|
|
packer_bootstrap = vim.fn.system({ "git", "clone", "https://github.com/wbthomason/packer.nvim", install_path })
|
|
end
|
|
vim.cmd("packadd packer.nvim")
|
|
|
|
-- Configures dark-notify to use colors from my environment
|
|
local function config_dark_notify()
|
|
require("dark_notify").run({
|
|
onchange = function(_)
|
|
-- Defined in _colors
|
|
_G.update_colors()
|
|
end,
|
|
})
|
|
end
|
|
|
|
local packer = require("packer")
|
|
local packer_util = require("packer.util")
|
|
local use = packer.use
|
|
|
|
packer.init({
|
|
-- Always load default
|
|
snapshot = "latest",
|
|
snapshot_path = packer_util.join_paths(vim.fn.stdpath("config"), "packer_snapshots"),
|
|
display = {
|
|
open_fn = function()
|
|
return packer_util.float({ border = "single" })
|
|
end,
|
|
},
|
|
})
|
|
|
|
-- Load things faster!
|
|
use({
|
|
"lewis6991/impatient.nvim",
|
|
config = [[require('impatient')]],
|
|
tag = utils.map_version_rule({
|
|
[">=0.7.0"] = utils.nil_val,
|
|
[">0.6.0"] = "v0.2",
|
|
[">=0.5.0"] = "v0.1",
|
|
}),
|
|
})
|
|
|
|
-- Let Packer manage and lazyload itself
|
|
use({
|
|
"wbthomason/packer.nvim",
|
|
cmd = {
|
|
"PackerClean",
|
|
"PackerCompile",
|
|
"PackerInstall",
|
|
"PackerLoad",
|
|
"PackerProfile",
|
|
"PackerSnapshot",
|
|
"PackerSnapshotDelete",
|
|
"PackerSnapshotRollback",
|
|
"PackerStatus",
|
|
"PackerSync",
|
|
"PackerUpdate",
|
|
},
|
|
config = [[require("plugins")]],
|
|
})
|
|
|
|
-- Colorschemes
|
|
use({
|
|
"vim-scripts/wombat256.vim",
|
|
{
|
|
"ViViDboarder/wombat.nvim",
|
|
requires = {
|
|
{
|
|
"rktjmp/lush.nvim",
|
|
tag = utils.map_version_rule({
|
|
[">=0.7.0"] = utils.nil_val,
|
|
[">=0.5.0"] = "v1.0.1",
|
|
}),
|
|
},
|
|
},
|
|
},
|
|
{ "ViViDboarder/wombuddy.nvim", requires = "tjdevries/colorbuddy.vim" },
|
|
"ishan9299/nvim-solarized-lua",
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
run = 'fish -c \'echo "set --path --prepend fish_themes_path "(pwd)"/extras" > ~/.config/fish/conf.d/tokyonight.fish\' || true', -- luacheck: no max line length
|
|
},
|
|
})
|
|
|
|
-- Auto and ends to some ifs and dos
|
|
use("tpope/vim-endwise")
|
|
|
|
-- Unix commands from vim? Yup!
|
|
use("tpope/vim-eunuch")
|
|
|
|
-- Adds repeats for custom motions
|
|
use("tpope/vim-repeat")
|
|
|
|
-- Readline shortcuts
|
|
use("tpope/vim-rsi")
|
|
|
|
-- Surround motions
|
|
use("tpope/vim-surround")
|
|
|
|
-- Better netrw
|
|
use("tpope/vim-vinegar")
|
|
|
|
-- Easier jumping to lines
|
|
use("vim-scripts/file-line")
|
|
|
|
-- Auto ctags generation
|
|
use("ludovicchabant/vim-gutentags")
|
|
|
|
-- Make it easier to discover some of my keymaps
|
|
use({
|
|
"folke/which-key.nvim",
|
|
config = function()
|
|
require("plugins.whichkey").configure()
|
|
end,
|
|
})
|
|
|
|
-- Better commenting
|
|
use({
|
|
"tomtom/tcomment_vim",
|
|
config = function()
|
|
vim.api.nvim_set_keymap("n", "//", ":TComment<CR>", { silent = true, noremap = true })
|
|
vim.api.nvim_set_keymap("v", "//", ":TCommentBlock<CR>", { silent = true, noremap = true })
|
|
end,
|
|
})
|
|
|
|
-- Allow wrapping and joining of arguments across multiple lines
|
|
use({
|
|
"FooSoft/vim-argwrap",
|
|
config = function()
|
|
vim.api.nvim_set_keymap("n", "<Leader>a", "<cmd>ArgWrap<CR>", { silent = true, noremap = true })
|
|
end,
|
|
})
|
|
|
|
-- Adds git operations to vim
|
|
use({
|
|
"tpope/vim-fugitive",
|
|
config = function()
|
|
local opts = { silent = true, noremap = true }
|
|
vim.api.nvim_set_keymap("n", "gb", "<cmd>Git blame<CR>", opts)
|
|
vim.api.nvim_set_keymap("n", "gc", "<cmd>Git commit<CR>", opts)
|
|
vim.api.nvim_set_keymap("n", "gd", "<cmd>Git diff<CR>", opts)
|
|
vim.api.nvim_set_keymap("n", "gs", "<cmd>Git<CR>", opts)
|
|
vim.api.nvim_set_keymap("n", "gw", "<cmd>Git write<CR>", opts)
|
|
end,
|
|
})
|
|
|
|
-- Quick toggling of Location and Quickfix lists
|
|
use({
|
|
"milkypostman/vim-togglelist",
|
|
config = function()
|
|
vim.api.nvim_set_keymap("n", "<F6>", ":call ToggleQuickfixList()<CR>", { silent = true, noremap = true })
|
|
vim.api.nvim_set_keymap("n", "<F7>", ":call ToggleLocationList()<CR>", { silent = true, noremap = true })
|
|
end,
|
|
})
|
|
|
|
-- Find text everywhere!
|
|
use({
|
|
"mhinz/vim-grepper",
|
|
config = function()
|
|
require("plugins.grepper")
|
|
end,
|
|
})
|
|
|
|
-- Highlight inline colors
|
|
use({
|
|
"norcalli/nvim-colorizer.lua",
|
|
config = function()
|
|
require("colorizer").setup()
|
|
end,
|
|
})
|
|
|
|
-- Custom status line
|
|
-- nvim-gps is deprecated in favor of https://github.com/SmiteshP/nvim-navic using LSP rather than TS
|
|
use({ "SmiteshP/nvim-gps", requires = "nvim-treesitter/nvim-treesitter" })
|
|
use({
|
|
"nvim-lualine/lualine.nvim",
|
|
config = function()
|
|
require("plugins.lualine").config_lualine()
|
|
end,
|
|
requires = {
|
|
-- Show my current location in my status bar
|
|
-- { "SmiteshP/nvim-gps", requires = "nvim-treesitter/nvim-treesitter" },
|
|
},
|
|
after = {
|
|
"nvim-gps",
|
|
},
|
|
})
|
|
|
|
-- On Mac, update colors when dark mode changes
|
|
use({
|
|
"cormacrelf/dark-notify",
|
|
disable = not vim.g.is_mac,
|
|
-- Download latest release on install
|
|
run = "curl -s https://api.github.com/repos/cormacrelf/dark-notify/releases/latest | jq '.assets[].browser_download_url' | xargs curl -Ls | tar xz -C ~/.local/bin/", -- luacheck: no max line length
|
|
config = config_dark_notify,
|
|
requires = "nvim-lualine/lualine.nvim",
|
|
})
|
|
|
|
-- Custom start screen
|
|
use({
|
|
"mhinz/vim-startify",
|
|
config = function()
|
|
require("utils").require_with_local("plugins.startify")
|
|
end,
|
|
})
|
|
|
|
-- LSP
|
|
|
|
-- Configure language servers
|
|
use({
|
|
"neovim/nvim-lspconfig",
|
|
tag = utils.map_version_rule({
|
|
[">=0.7.0"] = "v0.1.3",
|
|
[">=0.6.1"] = "v0.1.2",
|
|
[">=0.6.0"] = "v0.1.0",
|
|
}),
|
|
})
|
|
|
|
-- Install language servers
|
|
use({
|
|
"williamboman/mason.nvim",
|
|
requires = {
|
|
"neovim/nvim-lspconfig",
|
|
"williamboman/mason-lspconfig.nvim",
|
|
},
|
|
-- Only supports >=0.7.0
|
|
disable = vim.fn.has("nvim-0.7.0") ~= 1,
|
|
})
|
|
|
|
-- Lua dev for vim
|
|
use({
|
|
"folke/lua-dev.nvim",
|
|
requires = "neovim/nvim-lspconfig",
|
|
})
|
|
|
|
-- Better display of lsp diagnostics
|
|
use("folke/trouble.nvim")
|
|
|
|
-- Incremental lsp rename view
|
|
use({
|
|
"smjonas/inc-rename.nvim",
|
|
config = function()
|
|
require("inc_rename").setup()
|
|
end,
|
|
-- Only supports >=0.8.0
|
|
disable = vim.fn.has("nvim-0.8.0") ~= 1,
|
|
})
|
|
|
|
-- Generic linter/formatters in diagnostics API
|
|
use({
|
|
"jose-elias-alvarez/null-ls.nvim",
|
|
commit = utils.map_version_rule({
|
|
[">=0.7.0"] = utils.nil_val,
|
|
[">=0.6.0"] = "4b403d2d724f48150ded41189ae4866492a8158b",
|
|
[">=0.5.1"] = "739a98c12bedaa2430c4a3c08d1d22ad6c16513e",
|
|
[">=0.5.0"] = "3e7390735501d0507bf2c2b5c2e7a16f58deeb81",
|
|
}),
|
|
requires = { "nvim-lua/plenary.nvim", "neovim/nvim-lspconfig" },
|
|
})
|
|
|
|
-- Writing
|
|
-- abolish/pencil
|
|
use({
|
|
"preservim/vim-pencil",
|
|
cmd = { "Pencil" },
|
|
})
|
|
use({
|
|
"preservim/vim-textobj-sentence",
|
|
requires = "kana/vim-textobj-user",
|
|
})
|
|
use({
|
|
"junegunn/goyo.vim",
|
|
cmd = { "Goyo", "Zen" },
|
|
config = [[require("plugins.goyo-limelight")]],
|
|
requires = { "junegunn/limelight.vim", cmd = "Limelight" },
|
|
})
|
|
|
|
-- Treesitter
|
|
use({
|
|
"nvim-treesitter/nvim-treesitter",
|
|
run = ":TSUpdate",
|
|
commit = utils.map_version_rule({
|
|
[">=0.7.0"] = utils.nil_value,
|
|
[">=0.5.0"] = "a189323454d1215c682c7ad7db3e6739d26339c4",
|
|
}),
|
|
config = function()
|
|
require("plugins.treesitter").setup()
|
|
end,
|
|
})
|
|
use({
|
|
"nvim-treesitter/nvim-treesitter-refactor",
|
|
requires = "nvim-treesitter/nvim-treesitter",
|
|
})
|
|
use({
|
|
"nvim-treesitter/nvim-treesitter-textobjects",
|
|
requires = "nvim-treesitter/nvim-treesitter",
|
|
})
|
|
|
|
-- Completion
|
|
use({
|
|
"hrsh7th/nvim-cmp",
|
|
config = function()
|
|
require("plugins.completion").config_cmp()
|
|
end,
|
|
commit = utils.map_version_rule({
|
|
[">=0.7.0"] = utils.nil_val,
|
|
[">=0.5.0"] = "bba6fb67fdafc0af7c5454058dfbabc2182741f4",
|
|
}),
|
|
requires = {
|
|
{ "hrsh7th/cmp-nvim-lsp", after = "nvim-cmp" },
|
|
{ "hrsh7th/cmp-buffer", after = "nvim-cmp" },
|
|
{ "f3fora/cmp-spell", after = "nvim-cmp" },
|
|
{
|
|
"saadparwaiz1/cmp_luasnip",
|
|
after = "nvim-cmp",
|
|
commit = utils.map_version_rule({
|
|
[">0.7.0"] = utils.nil_val,
|
|
[">=0.5.0"] = "b10829736542e7cc9291e60bab134df1273165c9",
|
|
}),
|
|
},
|
|
"L3MON4D3/LuaSnip",
|
|
},
|
|
event = "InsertEnter *",
|
|
})
|
|
|
|
-- Add snippets
|
|
use({
|
|
"rafamadriz/friendly-snippets",
|
|
requires = "L3MON4D3/LuaSnip",
|
|
after = "LuaSnip",
|
|
config = function()
|
|
require("luasnip.loaders.from_vscode").load()
|
|
end,
|
|
})
|
|
|
|
use({
|
|
"ray-x/lsp_signature.nvim",
|
|
config = function()
|
|
require("lsp_signature").setup({
|
|
extra_trigger_chars = { "(", "," },
|
|
auto_close_after = nil,
|
|
-- Toggle these to use hint only
|
|
floating_window = true,
|
|
hint_enable = false,
|
|
})
|
|
end,
|
|
})
|
|
|
|
-- Fuzzy Finder
|
|
use({
|
|
"nvim-telescope/telescope.nvim",
|
|
requires = {
|
|
"nvim-lua/plenary.nvim",
|
|
"nvim-lua/popup.nvim",
|
|
"nvim-telescope/telescope-file-browser.nvim",
|
|
},
|
|
tag = utils.map_version_rule({
|
|
-- Follow stable release tag
|
|
[">=0.7.0"] = "0.1.0",
|
|
[">=0.6.0"] = "nvim-0.6",
|
|
["<0.6.0"] = "nvim-0.5.1",
|
|
["==0.5.0"] = "nvim-0.5.0",
|
|
}),
|
|
config = function()
|
|
require("plugins.telescope")
|
|
end,
|
|
})
|
|
|
|
-- Filetypes
|
|
use("ViViDboarder/vim-forcedotcom")
|
|
use("rust-lang/rust.vim")
|
|
use("hsanson/vim-android")
|
|
use({
|
|
"sheerun/vim-polyglot",
|
|
config = function()
|
|
vim.cmd([[
|
|
augroup polyglot_fts
|
|
au BufRead,BufNewFile */playbooks/*.yml,*/playbooks/*.yaml set filetype=yaml.ansible
|
|
au BufRead,BufNewFile go.mod,go.sum set filetype=gomod
|
|
augroup end
|
|
]])
|
|
end,
|
|
})
|
|
|
|
-- Debuging nvim config
|
|
use({
|
|
"tweekmonster/startuptime.vim",
|
|
cmd = { "StartupTime" },
|
|
})
|
|
|
|
-- Fancy todo highlighting
|
|
use({
|
|
"folke/todo-comments.nvim",
|
|
requires = {
|
|
"nvim-lua/plenary.nvim",
|
|
},
|
|
config = function()
|
|
require("plugins.todo")
|
|
end,
|
|
})
|
|
|
|
-- Fancy notifications
|
|
use({
|
|
"rcarriga/nvim-notify",
|
|
config = function()
|
|
require("plugins.notify")
|
|
end,
|
|
})
|
|
|
|
-- Auto sync after bootstrapping on a fresh box
|
|
if packer_bootstrap then
|
|
packer.sync()
|
|
end
|