2024-02-27 13:38:33 +00:00
|
|
|
-- [[ Configure and install plugins ]]
|
|
|
|
--
|
|
|
|
-- To check the current status of your plugins, run
|
|
|
|
-- :Lazy
|
|
|
|
--
|
|
|
|
-- You can press `?` in this menu for help. Use `:q` to close the window
|
2023-10-22 09:50:38 +00:00
|
|
|
--
|
2024-02-27 13:38:33 +00:00
|
|
|
-- To update plugins, you can run
|
|
|
|
-- :Lazy update
|
|
|
|
--
|
|
|
|
-- NOTE: Here is where you install your plugins.
|
2023-10-22 09:50:38 +00:00
|
|
|
require('lazy').setup({
|
|
|
|
-- NOTE: First, some plugins that don't require any configuration
|
2024-01-22 09:58:10 +00:00
|
|
|
-- Discord RPC
|
|
|
|
'andweeb/presence.nvim',
|
|
|
|
|
|
|
|
-- Practice games
|
|
|
|
'ThePrimeagen/vim-be-good',
|
2023-10-22 09:50:38 +00:00
|
|
|
|
|
|
|
-- Git related plugins
|
|
|
|
'tpope/vim-fugitive',
|
|
|
|
'tpope/vim-rhubarb',
|
|
|
|
|
|
|
|
-- Detect tabstop and shiftwidth automatically
|
|
|
|
'tpope/vim-sleuth',
|
|
|
|
|
|
|
|
{
|
|
|
|
-- LSP Configuration & Plugins
|
|
|
|
'neovim/nvim-lspconfig',
|
|
|
|
dependencies = {
|
|
|
|
-- Automatically install LSPs to stdpath for neovim
|
2024-02-27 13:38:33 +00:00
|
|
|
'williamboman/mason.nvim',
|
2023-10-22 09:50:38 +00:00
|
|
|
'williamboman/mason-lspconfig.nvim',
|
2024-02-27 13:38:33 +00:00
|
|
|
'WhoIsSethDaniel/mason-tool-installer.nvim',
|
2023-10-22 09:50:38 +00:00
|
|
|
|
|
|
|
-- Useful status updates for LSP
|
|
|
|
-- NOTE: `opts = {}` is the same as calling `require('fidget').setup({})`
|
2024-02-27 13:38:33 +00:00
|
|
|
{ 'j-hui/fidget.nvim', opts = {} },
|
2023-10-22 09:50:38 +00:00
|
|
|
|
|
|
|
-- Additional lua configuration, makes nvim stuff amazing!
|
|
|
|
'folke/neodev.nvim',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
-- Autocompletion
|
|
|
|
'hrsh7th/nvim-cmp',
|
|
|
|
dependencies = {
|
|
|
|
-- Snippet Engine & its associated nvim-cmp source
|
2024-02-27 13:38:33 +00:00
|
|
|
{
|
|
|
|
'L3MON4D3/LuaSnip',
|
|
|
|
build = (function()
|
|
|
|
-- Build Step is needed for regex support in snippets
|
|
|
|
-- This step is not supported in many windows environments
|
|
|
|
-- Remove the below condition to re-enable on windows
|
|
|
|
if vim.fn.has 'win32' == 1 or vim.fn.executable 'make' == 0 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
return 'make install_jsregexp'
|
|
|
|
end)(),
|
|
|
|
},
|
2023-10-22 09:50:38 +00:00
|
|
|
'saadparwaiz1/cmp_luasnip',
|
|
|
|
|
|
|
|
-- Adds LSP completion capabilities
|
|
|
|
'hrsh7th/cmp-nvim-lsp',
|
2023-12-08 14:32:52 +00:00
|
|
|
'hrsh7th/cmp-path',
|
2023-10-22 09:50:38 +00:00
|
|
|
|
|
|
|
-- Adds a number of user-friendly snippets
|
|
|
|
'rafamadriz/friendly-snippets',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
-- Useful plugin to show you pending keybinds.
|
2024-02-27 13:38:33 +00:00
|
|
|
{
|
|
|
|
'folke/which-key.nvim',
|
|
|
|
event = 'VeryLazy', -- Sets the loading event to 'VeryLazy'
|
|
|
|
config = function() -- This is the function that runs, AFTER loading
|
|
|
|
require('which-key').setup()
|
|
|
|
|
|
|
|
-- Document existing key chains
|
|
|
|
require('which-key').register {
|
|
|
|
['<leader>c'] = { name = '[C]ode', _ = 'which_key_ignore' },
|
|
|
|
['<leader>d'] = { name = '[D]ocument', _ = 'which_key_ignore' },
|
|
|
|
['<leader>r'] = { name = '[R]ename', _ = 'which_key_ignore' },
|
|
|
|
['<leader>s'] = { name = '[S]earch', _ = 'which_key_ignore' },
|
|
|
|
['<leader>w'] = { name = '[W]orkspace', _ = 'which_key_ignore' },
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
},
|
2023-10-22 09:50:38 +00:00
|
|
|
{
|
|
|
|
-- Adds git related signs to the gutter, as well as utilities for managing changes
|
|
|
|
'lewis6991/gitsigns.nvim',
|
|
|
|
opts = {
|
|
|
|
-- See `:help gitsigns.txt`
|
|
|
|
signs = {
|
|
|
|
add = { text = '+' },
|
|
|
|
change = { text = '~' },
|
|
|
|
delete = { text = '_' },
|
|
|
|
topdelete = { text = '‾' },
|
|
|
|
changedelete = { text = '~' },
|
|
|
|
},
|
|
|
|
on_attach = function(bufnr)
|
|
|
|
local gs = package.loaded.gitsigns
|
2023-12-04 18:24:25 +00:00
|
|
|
|
|
|
|
local function map(mode, l, r, opts)
|
|
|
|
opts = opts or {}
|
|
|
|
opts.buffer = bufnr
|
|
|
|
vim.keymap.set(mode, l, r, opts)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- Navigation
|
|
|
|
map({ 'n', 'v' }, ']c', function()
|
2023-10-22 09:50:38 +00:00
|
|
|
if vim.wo.diff then
|
|
|
|
return ']c'
|
|
|
|
end
|
|
|
|
vim.schedule(function()
|
|
|
|
gs.next_hunk()
|
|
|
|
end)
|
|
|
|
return '<Ignore>'
|
2023-12-04 18:24:25 +00:00
|
|
|
end, { expr = true, desc = 'Jump to next hunk' })
|
|
|
|
|
|
|
|
map({ 'n', 'v' }, '[c', function()
|
2023-10-22 09:50:38 +00:00
|
|
|
if vim.wo.diff then
|
|
|
|
return '[c'
|
|
|
|
end
|
|
|
|
vim.schedule(function()
|
|
|
|
gs.prev_hunk()
|
|
|
|
end)
|
|
|
|
return '<Ignore>'
|
2023-12-04 18:24:25 +00:00
|
|
|
end, { expr = true, desc = 'Jump to previous hunk' })
|
|
|
|
|
|
|
|
-- Actions
|
|
|
|
-- visual mode
|
|
|
|
map('v', '<leader>hs', function()
|
|
|
|
gs.stage_hunk { vim.fn.line '.', vim.fn.line 'v' }
|
|
|
|
end, { desc = 'stage git hunk' })
|
|
|
|
map('v', '<leader>hr', function()
|
|
|
|
gs.reset_hunk { vim.fn.line '.', vim.fn.line 'v' }
|
|
|
|
end, { desc = 'reset git hunk' })
|
|
|
|
-- normal mode
|
|
|
|
map('n', '<leader>hs', gs.stage_hunk, { desc = 'git stage hunk' })
|
|
|
|
map('n', '<leader>hr', gs.reset_hunk, { desc = 'git reset hunk' })
|
|
|
|
map('n', '<leader>hS', gs.stage_buffer, { desc = 'git Stage buffer' })
|
|
|
|
map('n', '<leader>hu', gs.undo_stage_hunk, { desc = 'undo stage hunk' })
|
|
|
|
map('n', '<leader>hR', gs.reset_buffer, { desc = 'git Reset buffer' })
|
|
|
|
map('n', '<leader>hp', gs.preview_hunk, { desc = 'preview git hunk' })
|
|
|
|
map('n', '<leader>hb', function()
|
|
|
|
gs.blame_line { full = false }
|
|
|
|
end, { desc = 'git blame line' })
|
|
|
|
map('n', '<leader>hd', gs.diffthis, { desc = 'git diff against index' })
|
|
|
|
map('n', '<leader>hD', function()
|
|
|
|
gs.diffthis '~'
|
|
|
|
end, { desc = 'git diff against last commit' })
|
|
|
|
|
|
|
|
-- Toggles
|
|
|
|
map('n', '<leader>tb', gs.toggle_current_line_blame, { desc = 'toggle git blame line' })
|
|
|
|
map('n', '<leader>td', gs.toggle_deleted, { desc = 'toggle git show deleted' })
|
|
|
|
|
|
|
|
-- Text object
|
|
|
|
map({ 'o', 'x' }, 'ih', ':<C-U>Gitsigns select_hunk<CR>', { desc = 'select git hunk' })
|
2023-10-22 09:50:38 +00:00
|
|
|
end,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2024-02-27 13:38:33 +00:00
|
|
|
-- Autoformat
|
|
|
|
'stevearc/conform.nvim',
|
2023-10-22 09:50:38 +00:00
|
|
|
opts = {
|
2024-02-27 13:38:33 +00:00
|
|
|
notify_on_error = false,
|
|
|
|
format_on_save = {
|
|
|
|
timeout_ms = 500,
|
|
|
|
lsp_fallback = true,
|
|
|
|
},
|
|
|
|
formatters_by_ft = {
|
|
|
|
lua = { 'stylua' },
|
|
|
|
-- Conform can also run multiple formatters sequentially
|
2024-02-28 06:39:52 +00:00
|
|
|
python = { 'isort', 'black' },
|
2024-02-27 13:38:33 +00:00
|
|
|
--
|
|
|
|
-- You can use a sub-list to tell conform to run *until* a formatter
|
|
|
|
-- is found.
|
2024-02-28 06:39:52 +00:00
|
|
|
javascript = { { 'prettierd', 'prettier' } },
|
2023-10-22 09:50:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
2024-02-27 13:38:33 +00:00
|
|
|
-- You can easily change to a different colorscheme.
|
|
|
|
-- Change the name of the colorscheme plugin below, and then
|
|
|
|
-- change the command in the config to whatever the name of that colorscheme is
|
|
|
|
--
|
|
|
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
|
|
|
|
'folke/tokyonight.nvim',
|
2024-02-28 06:39:52 +00:00
|
|
|
lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
2024-02-27 13:38:33 +00:00
|
|
|
priority = 1000, -- make sure to load this before all the other start plugins
|
|
|
|
config = function()
|
|
|
|
-- Load the colorscheme here
|
|
|
|
vim.cmd.colorscheme 'tokyonight-night'
|
|
|
|
|
|
|
|
-- You can configure highlights by doing something like
|
|
|
|
vim.cmd.hi 'Comment gui=none'
|
|
|
|
end,
|
2023-10-22 09:50:38 +00:00
|
|
|
},
|
|
|
|
|
2024-02-27 13:38:33 +00:00
|
|
|
-- Highlight todo, notes, etc in comments
|
|
|
|
{ 'folke/todo-comments.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
|
2023-10-22 09:50:38 +00:00
|
|
|
-- "gc" to comment visual regions/lines
|
2024-02-28 06:39:52 +00:00
|
|
|
{ 'numToStr/Comment.nvim', opts = {} },
|
2023-10-22 09:50:38 +00:00
|
|
|
|
|
|
|
{
|
2024-02-27 13:38:33 +00:00
|
|
|
-- Collection of various small independent plugins/modules
|
|
|
|
'echasnovski/mini.nvim',
|
|
|
|
config = function()
|
|
|
|
-- Better Around/Inside textobjects
|
|
|
|
--
|
|
|
|
-- Examples:
|
|
|
|
-- - va) - [V]isually select [A]round [)]parenthen
|
|
|
|
-- - yinq - [Y]ank [I]nside [N]ext [']quote
|
|
|
|
-- - ci' - [C]hange [I]nside [']quote
|
|
|
|
require('mini.ai').setup { n_lines = 500 }
|
|
|
|
|
|
|
|
-- Add/delete/replace surroundings (brackets, quotes, etc.)
|
|
|
|
--
|
|
|
|
-- - saiw) - [S]urround [A]dd [I]nner [W]ord [)]Paren
|
|
|
|
-- - sd' - [S]urround [D]elete [']quotes
|
|
|
|
-- - sr)' - [S]urround [R]eplace [)] [']
|
|
|
|
require('mini.surround').setup()
|
|
|
|
|
|
|
|
-- Simple and easy statusline.
|
|
|
|
-- You could remove this setup call if you don't like it,
|
|
|
|
-- and try some other statusline plugin
|
|
|
|
require('mini.statusline').setup()
|
|
|
|
|
|
|
|
-- ... and there is more!
|
|
|
|
-- Check out: https://github.com/echasnovski/mini.nvim
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
-- Fuzzy Finder (files, lsp, etc)
|
2023-10-22 09:50:38 +00:00
|
|
|
'nvim-telescope/telescope.nvim',
|
2024-02-27 13:38:33 +00:00
|
|
|
event = 'VeryLazy',
|
2023-10-22 09:50:38 +00:00
|
|
|
branch = '0.1.x',
|
|
|
|
dependencies = {
|
|
|
|
'nvim-lua/plenary.nvim',
|
|
|
|
-- Fuzzy Finder Algorithm which requires local dependencies to be built.
|
|
|
|
-- Only load if `make` is available. Make sure you have the system
|
|
|
|
-- requirements installed.
|
|
|
|
{
|
2024-02-27 13:38:33 +00:00
|
|
|
-- If encountering errors, see telescope-fzf-native README for install instructions
|
2023-10-22 09:50:38 +00:00
|
|
|
'nvim-telescope/telescope-fzf-native.nvim',
|
2024-02-27 13:38:33 +00:00
|
|
|
|
|
|
|
-- `build` is used to run some command when the plugin is installed/updated.
|
|
|
|
-- This is only run then, not every time Neovim starts up.
|
2024-02-28 06:39:52 +00:00
|
|
|
build = 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release; cmake --build build --config Release; cmake --install build --prefix build',
|
2024-02-27 13:38:33 +00:00
|
|
|
|
|
|
|
-- `cond` is a condition used to determine whether this plugin should be
|
|
|
|
-- installed and loaded.
|
|
|
|
cond = function()
|
|
|
|
return vim.fn.executable 'make' == 1
|
|
|
|
end,
|
2023-10-22 09:50:38 +00:00
|
|
|
},
|
2024-02-27 13:38:33 +00:00
|
|
|
{ 'nvim-telescope/telescope-ui-select.nvim' },
|
|
|
|
|
|
|
|
-- Useful for getting pretty icons, but requires special font.
|
|
|
|
-- If you already have a Nerd Font, or terminal set up with fallback fonts
|
|
|
|
-- you can enable this
|
2024-02-28 06:39:52 +00:00
|
|
|
{ 'nvim-tree/nvim-web-devicons' },
|
2023-10-22 09:50:38 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
-- Highlight, edit, and navigate code
|
|
|
|
'nvim-treesitter/nvim-treesitter',
|
|
|
|
dependencies = {
|
|
|
|
'nvim-treesitter/nvim-treesitter-textobjects',
|
|
|
|
},
|
|
|
|
build = ':TSUpdate',
|
|
|
|
},
|
|
|
|
|
2024-02-27 13:38:33 +00:00
|
|
|
-- The following two comments only work if you have downloaded the kickstart repo, not just copy pasted the
|
|
|
|
-- init.lua. If you want these files, they are in the repository, so you can just download them and
|
|
|
|
-- put them in the right spots if you want.
|
|
|
|
|
|
|
|
-- NOTE: Next step on your Neovim journey: Add/Configure additional plugins for kickstart
|
|
|
|
--
|
|
|
|
-- Here are some example plugins that I've included in the kickstart repository.
|
|
|
|
-- Uncomment any of the lines below to enable them (you will need to restart nvim).
|
|
|
|
|
|
|
|
require 'kickstart.plugins.indent_line',
|
2024-02-15 10:17:24 +00:00
|
|
|
require 'kickstart.plugins.debug',
|
2023-10-22 09:50:38 +00:00
|
|
|
|
|
|
|
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
|
2024-02-27 13:38:33 +00:00
|
|
|
-- This is the easiest way to modularize your config.
|
2023-10-22 09:50:38 +00:00
|
|
|
--
|
2024-02-27 13:38:33 +00:00
|
|
|
-- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going.
|
|
|
|
-- For additional information see: :help lazy.nvim-lazy.nvim-structuring-your-plugins
|
2023-10-22 09:50:38 +00:00
|
|
|
-- { import = 'custom.plugins' },
|
|
|
|
}, {})
|
|
|
|
|
|
|
|
-- vim: ts=2 sts=2 sw=2 et
|