2021-09-03 01:18:44 -07:00
-- Load plugins
2021-12-02 03:00:51 -08:00
-- Bootstrap packer if needed {{
2021-09-03 01:18:44 -07:00
local fn = vim.fn
local install_path = fn.stdpath ( ' data ' ) .. ' /site/pack/packer/start/packer.nvim '
if fn.empty ( fn.glob ( install_path ) ) > 0 then
2022-08-13 01:58:52 -07:00
packer_bootstrap = fn.system ( { ' git ' , ' clone ' , ' --depth ' , ' 1 ' , ' https://github.com/wbthomason/packer.nvim ' , install_path } )
vim.cmd [[packadd packer.nvim]]
2021-09-03 01:18:44 -07:00
end
2021-12-02 03:00:51 -08:00
-- }}
2021-09-03 01:18:44 -07:00
2021-12-16 14:41:01 -08:00
local use = require ( ' packer ' ) . use
2021-11-25 04:32:01 -08:00
return require ( ' packer ' ) . startup ( { function ( )
2021-12-02 03:00:51 -08:00
-- TODO: Find a better way to organize this
-- impatient (needs to go early)
2022-07-26 02:24:10 -07:00
use { -- lewis6991: impatient: Make nvim load faster by caching them - needs to load early
2021-12-02 03:00:51 -08:00
' lewis6991/impatient.nvim ' ,
2021-12-03 01:05:26 -08:00
config = function ( )
require ( ' impatient ' )
end ,
2021-12-02 03:00:51 -08:00
}
2021-09-25 02:19:19 -07:00
2021-09-03 01:18:44 -07:00
-- Packer
2022-08-13 01:58:52 -07:00
-- use 'wbthomason/packer.nvim',
2022-07-26 02:24:10 -07:00
use { -- packer: plugin manager
2021-11-25 04:32:01 -08:00
' wbthomason/packer.nvim ' ,
2021-12-03 01:05:26 -08:00
config = function ( )
-- Map :PS to :PackerSync
2021-11-25 04:32:01 -08:00
vim.cmd ' command! PS PackerSync '
2022-08-13 01:58:52 -07:00
end ,
2021-09-03 01:18:44 -07:00
}
2021-12-02 03:00:51 -08:00
-- Colors (decorations)
2022-07-26 02:24:10 -07:00
use { -- treesitter: syntax highlighting and more
2021-09-03 01:18:44 -07:00
' nvim-treesitter/nvim-treesitter ' , run = ' :TSUpdate ' ,
config = function ( )
2021-09-27 20:29:55 -07:00
require ( ' blake.lsp ' ) . treesitter ( )
2021-09-03 01:18:44 -07:00
end ,
2021-12-02 03:00:51 -08:00
}
2022-07-26 02:24:10 -07:00
use { -- onedark.nvim: onedark theme
2021-09-03 01:18:44 -07:00
' navarasu/onedark.nvim ' ,
config = function ( )
2021-11-22 01:14:18 -08:00
-- vim.g.onedark_transparent_background = true
2021-12-26 16:18:33 -08:00
vim.cmd [ [
2022-02-06 22:13:22 -08:00
" au ColorScheme onedark hi TabLine gui=none guibg='#282C34' guifg='#5C6370' " all tabs color
2021-12-26 16:18:33 -08:00
au ColorScheme onedark hi TabLineSel guibg = ' #282C34 ' guifg = ' #B5BBC7 ' " Highlighted tab color
2022-02-06 22:13:22 -08:00
" au ColorScheme onedark hi TabLineFill guibg='#282C34' " tabline portion without tabs ( right - hand side )
2021-12-26 16:18:33 -08:00
] ]
end
}
2022-07-26 02:24:10 -07:00
use { -- tokyonight.nvim: tokyonight theme
2022-06-04 22:12:08 -07:00
' folke/tokyonight.nvim ' ,
2022-06-09 20:30:33 -07:00
config = function ( )
2022-08-14 15:49:06 -07:00
-- vim.g.tokyonight_style = "night"
2022-08-13 04:07:58 -07:00
vim.g . tokyonight_italic_functions = true
vim.g . tokyonight_sidebars = { " nvimtree " , " qf " , " vista_kind " , " terminal " , " packer " }
2022-06-09 20:30:33 -07:00
vim.cmd [ [
2022-06-17 01:36:55 -07:00
au ColorScheme tokyonight hi TabLine gui = none guibg = ' #1D202F ' guifg = ' #565F89 ' " all tabs color
2022-06-09 20:30:33 -07:00
au ColorScheme tokyonight hi TabLineSel guibg = ' #24283B ' guifg = ' #C0CAF5 ' " Highlighted tab color
2022-06-17 01:36:55 -07:00
au ColorScheme tokyonight hi TabLineFill guibg = ' #1D202F ' " tabline portion without tabs (right-hand side)
2022-06-09 20:30:33 -07:00
] ]
2022-06-17 01:36:55 -07:00
-- Has to be put here so it runs synchronously
vim.cmd ' colorscheme tokyonight '
2022-06-09 20:30:33 -07:00
end ,
2022-06-04 22:12:08 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- newspring: Good light theme for writing
2022-01-31 19:45:08 -08:00
' NLKNguyen/papercolor-theme ' ,
}
2022-07-26 02:24:10 -07:00
use { -- statusline: lualine
2021-12-26 16:18:33 -08:00
' nvim-lualine/lualine.nvim ' ,
requires = { ' kyazdani42/nvim-web-devicons ' , opt = true } ,
config = function ( )
require ( ' blake.other ' ) . lualine ( )
end ,
}
2022-07-26 02:24:10 -07:00
use { -- nvim-tabline: batter looking tabline
2022-06-17 01:36:55 -07:00
' alvarosevilla95/luatab.nvim ' ,
2021-12-26 16:18:33 -08:00
requires = ' kyazdani42/nvim-web-devicons ' ,
config = function ( )
2022-06-17 01:36:55 -07:00
require ( ' luatab ' ) . setup ( )
2021-09-03 01:18:44 -07:00
end
}
2022-07-26 02:24:10 -07:00
use { -- nvim-colorizer: css color tag highlighter (ex- #FFB13B)
2021-12-16 14:41:01 -08:00
' norcalli/nvim-colorizer.lua ' ,
config = function ( )
vim.cmd ' command! COL ColorizerToggle '
end ,
}
2022-08-09 13:47:46 -07:00
use { -- ifdef-highlighting: highlight c/c++ ifdef's - :Define :Undefine
' vim-scripts/ifdef-highlighting '
}
2021-09-03 01:18:44 -07:00
-- IDE features
2022-05-13 04:28:53 -07:00
---- LSP
2022-07-26 02:24:10 -07:00
use { -- lspinstall: language server installer, (lspconfig is here too)
2021-12-07 15:23:04 -08:00
' williamboman/nvim-lsp-installer ' ,
2022-07-26 02:21:23 -07:00
{ -- lspconfig: default language server configurations
2022-05-13 04:28:53 -07:00
' neovim/nvim-lspconfig ' ,
config = function ( )
require ( ' blake.lsp ' ) . lspinstall ( )
require ( ' blake.lsp ' ) . lspconfig ( )
end
}
2021-09-03 01:18:44 -07:00
}
2022-08-13 04:34:19 -07:00
use { -- rust-tools: make nvim a better rust environment
' simrat39/rust-tools.nvim ' ,
2022-08-14 15:49:06 -07:00
requires = {
' mattn/webapi-vim ' , -- allow :RustPlay
} ,
2022-08-13 04:34:19 -07:00
config = function ( )
local rt = require ( " rust-tools " )
rt.setup ( {
server = {
on_attach = function ( _ , bufnr )
-- Hover actions
vim.keymap . set ( " n " , " K " , 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 ,
} ,
} )
end
}
2022-07-26 02:24:10 -07:00
use { -- ts-context-commentstring: set commentstring based on context from treesitter (two langs in one file)
2021-12-26 16:18:33 -08:00
' JoosepAlviste/nvim-ts-context-commentstring ' ,
requires = ' nvim-treesitter/nvim-treesitter ' ,
config = function ( )
require ' nvim-treesitter.configs ' . setup {
context_commentstring = {
enable = true ,
enable_autocmd = false ,
2022-01-08 05:18:04 -08:00
} ,
2021-12-26 16:18:33 -08:00
}
end ,
}
2022-07-26 02:24:10 -07:00
use { -- cmp: completion menu
2021-09-27 20:29:55 -07:00
' hrsh7th/nvim-cmp ' ,
2021-09-06 17:56:58 -07:00
config = function ( )
2021-09-24 21:20:05 -07:00
require ( ' blake.lsp ' ) . cmp ( )
2021-09-06 17:56:58 -07:00
end ,
2021-12-02 03:00:51 -08:00
requires = { -- (mostly) nvim-cmp sources (not required by cmp, but reqired by my configuration)
' onsails/lspkind-nvim ' , -- icons for entries of the completion menu
2021-09-27 20:29:55 -07:00
' hrsh7th/cmp-path ' ,
2021-11-25 04:32:01 -08:00
' hrsh7th/cmp-nvim-lua ' ,
2021-09-27 20:29:55 -07:00
' hrsh7th/cmp-nvim-lsp ' ,
2022-04-25 14:00:19 -07:00
' saadparwaiz1/cmp_luasnip ' ,
2021-11-25 05:16:30 -08:00
' ray-x/cmp-treesitter ' ,
2021-11-25 04:32:01 -08:00
' hrsh7th/cmp-calc ' ,
' f3fora/cmp-spell ' ,
2021-09-27 20:29:55 -07:00
' hrsh7th/cmp-buffer ' ,
2021-11-25 05:16:30 -08:00
' hrsh7th/cmp-cmdline ' ,
2021-09-27 20:29:55 -07:00
' hrsh7th/cmp-emoji ' ,
2021-12-07 15:23:04 -08:00
} ,
2021-09-05 13:47:46 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- luasnip: snippits plugin
2022-04-25 14:00:19 -07:00
' L3MON4D3/LuaSnip ' ,
2022-07-26 02:21:23 -07:00
config = function ( )
require ( " luasnip.loaders.from_vscode " ) . lazy_load ( )
end
2022-04-25 14:00:19 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- friendly-snippets: lots of good snippits
2022-07-26 02:21:23 -07:00
' rafamadriz/friendly-snippets '
}
2022-07-26 02:24:10 -07:00
use { -- lsp_signature: function parameter previews
2021-09-27 20:29:55 -07:00
' ray-x/lsp_signature.nvim ' ,
after = ' nvim-lspconfig ' ,
2021-09-03 01:18:44 -07:00
config = function ( )
2021-09-27 20:29:55 -07:00
require ( ' blake.lsp ' ) . signature ( )
2021-09-03 01:18:44 -07:00
end ,
}
2022-07-26 02:24:10 -07:00
use { -- symbols-outline: treesitter-based document outline (SO)
2021-12-02 03:00:51 -08:00
' simrat39/symbols-outline.nvim ' ,
config = function ( )
vim.cmd ' command! SO SymbolsOutline '
2022-05-02 03:48:00 -07:00
vim.cmd ' nnoremap <Leader>so <cmd>SymbolsOutline<CR> '
2021-12-02 03:00:51 -08:00
end ,
}
2022-07-26 02:24:10 -07:00
-- use { -- ALE: Support for lots of linters, etc
2022-05-15 00:43:47 -07:00
-- 'dense-analysis/ale',
-- ft = {'sh', 'zsh', 'zshrc', 'bashrc', 'bash'},
-- config = function()
-- vim.g.ale_disable_lsp = 1
-- end
-- }
2022-08-08 15:58:02 -07:00
use { -- null-ls: Support for lots of programming tools, but through nvim lsp
' jose-elias-alvarez/null-ls.nvim ' ,
requires = ' nvim-lua/plenary.nvim ' ,
config = function ( )
local null_ls = require ( " null-ls " )
require ( " null-ls " ) . setup ( {
sources = {
null_ls.builtins . code_actions.refactoring ,
null_ls.builtins . formatting.clang_format ,
}
} )
end
}
2022-08-13 02:03:55 -07:00
use { -- refactoring: Refactoring tools for neovim
2022-08-08 15:58:02 -07:00
' ThePrimeagen/refactoring.nvim ' ,
requires = {
{ " nvim-lua/plenary.nvim " } ,
{ " nvim-treesitter/nvim-treesitter " }
} ,
config = function ( )
require ( ' refactoring ' ) . setup ( { } )
-- Remaps for the refactoring operations currently offered by the plugin
vim.api . nvim_set_keymap ( " v " , " <leader>re " , [[ <Esc><Cmd>lua require('refactoring').refactor('Extract Function')<CR>]] , { noremap = true , silent = true , expr = false } )
vim.api . nvim_set_keymap ( " v " , " <leader>rf " , [[ <Esc><Cmd>lua require('refactoring').refactor('Extract Function To File')<CR>]] , { noremap = true , silent = true , expr = false } )
vim.api . nvim_set_keymap ( " v " , " <leader>rv " , [[ <Esc><Cmd>lua require('refactoring').refactor('Extract Variable')<CR>]] , { noremap = true , silent = true , expr = false } )
vim.api . nvim_set_keymap ( " v " , " <leader>ri " , [[ <Esc><Cmd>lua require('refactoring').refactor('Inline Variable')<CR>]] , { noremap = true , silent = true , expr = false } )
-- Extract block doesn't need visual mode
vim.api . nvim_set_keymap ( " n " , " <leader>rb " , [[ <Cmd>lua require('refactoring').refactor('Extract Block')<CR>]] , { noremap = true , silent = true , expr = false } )
vim.api . nvim_set_keymap ( " n " , " <leader>rbf " , [[ <Cmd>lua require('refactoring').refactor('Extract Block To File')<CR>]] , { noremap = true , silent = true , expr = false } )
-- Inline variable can also pick up the identifier currently under the cursor without visual mode
vim.api . nvim_set_keymap ( " n " , " <leader>ri " , [[ <Cmd>lua require('refactoring').refactor('Inline Variable')<CR>]] , { noremap = true , silent = true , expr = false } )
-- Refactoring telescope integration
-- load refactoring Telescope extension
require ( " telescope " ) . load_extension ( " refactoring " )
-- remap to open the Telescope refactoring menu in visual mode
vim.api . nvim_set_keymap (
" v " ,
" <leader>rr " ,
" <Esc><cmd>lua require('telescope').extensions.refactoring.refactors()<CR> " ,
{ noremap = true }
)
end ,
}
2021-09-28 01:52:37 -07:00
---- DAP (Debug Adapter Protocol)
2022-07-26 02:24:10 -07:00
use { -- nvim-dap: DAP support
2021-09-28 01:52:37 -07:00
' mfussenegger/nvim-dap ' ,
config = function ( )
require ( ' blake.dap ' ) . nvim_dap ( )
end
}
2022-08-13 01:58:52 -07:00
-- use { -- dap-buddy: DAP adapter installer - DBInstall
2022-04-27 00:50:10 -07:00
-- 'Pocco81/dap-buddy.nvim',
-- config = function()
-- require('blake.dap').dap_buddy()
-- end
-- }
2022-07-26 02:24:10 -07:00
use { -- virtual-text: Print Variable names while debugging
2021-09-28 01:52:37 -07:00
' theHamsta/nvim-dap-virtual-text ' ,
config = function ( )
2022-08-13 04:07:58 -07:00
-- calling this with a parameter to keep lua language server from complaining
require ( " nvim-dap-virtual-text " ) . setup ( { context_commentstring = { enable = true , } } )
2021-09-28 01:52:37 -07:00
end
}
2022-07-26 02:24:10 -07:00
use { -- nvim-dap-ui: a UI for nvim-dap
2021-09-28 01:52:37 -07:00
' rcarriga/nvim-dap-ui ' ,
2022-08-13 01:58:52 -07:00
requires = { " mfussenegger/nvim-dap " } ,
2021-09-28 01:52:37 -07:00
config = function ( )
require ( ' blake.dap ' ) . dap_ui ( )
end ,
}
2021-09-03 01:53:53 -07:00
---- Other IDE features
2022-07-26 02:24:10 -07:00
use { -- telescope: fuzzy finder for finding fuzzy things
2022-04-15 14:32:46 -07:00
' nvim-telescope/telescope.nvim ' ,
requires = { { ' nvim-lua/plenary.nvim ' } } ,
config = function ( )
require ( ' blake.other ' ) . telescope ( )
end
}
2022-07-26 02:24:10 -07:00
use { -- gitsigns: git integration
2021-09-03 01:18:44 -07:00
' lewis6991/gitsigns.nvim ' ,
requires = {
' nvim-lua/plenary.nvim '
} ,
2021-09-15 21:42:31 -07:00
config = function ( )
2021-09-24 21:20:05 -07:00
require ( ' blake.other ' ) . gitsigns ( )
2021-09-15 21:42:31 -07:00
end ,
2021-09-03 01:18:44 -07:00
}
2022-07-26 02:24:10 -07:00
-- use { -- nvim-tree: file manager
2021-12-26 16:18:33 -08:00
-- 'kyazdani42/nvim-tree.lua',
-- requires = 'kyazdani42/nvim-web-devicons',
-- config = function()
-- require('blake.other').nvimtree()
-- end
-- }
2022-07-26 02:24:10 -07:00
use { -- toggleterm: terminal
2021-09-27 20:29:55 -07:00
' akinsho/toggleterm.nvim ' ,
2022-08-09 12:16:54 -07:00
branch = ' main ' ,
2021-09-03 01:18:44 -07:00
config = function ( )
2021-09-24 21:20:05 -07:00
require ( ' blake.other ' ) . toggleterm ( )
2021-09-03 01:18:44 -07:00
end
}
2022-07-26 02:24:10 -07:00
use { -- neoscroll: Smooth Scrolling
2021-09-27 20:29:55 -07:00
' karb94/neoscroll.nvim ' ,
2022-08-09 11:29:43 -07:00
disable = true ,
2021-09-20 02:48:09 -07:00
config = function ( )
2021-09-24 21:20:05 -07:00
require ( ' blake.other ' ) . neoscroll ( )
2021-09-20 02:48:09 -07:00
end ,
2021-09-05 13:47:46 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- auto-session: automatic session management
2021-09-07 17:59:31 -07:00
' rmagatti/auto-session ' ,
config = function ( )
2021-09-24 21:20:05 -07:00
require ( ' blake.other ' ) . autosession ( )
2021-09-07 17:59:31 -07:00
end
}
2022-07-26 02:24:10 -07:00
use { -- glow: Markdown preview
2021-09-15 21:39:21 -07:00
' ellisonleao/glow.nvim ' ,
ft = { ' md ' , ' markdown ' , }
}
2022-07-26 02:24:10 -07:00
use { -- zen mode: (ZenMode or ZM)
2021-12-02 03:00:51 -08:00
" folke/zen-mode.nvim " ,
config = function ( )
2022-01-20 03:16:39 -08:00
require ( ' blake.other ' ) . zenmode ( )
2022-03-15 00:46:12 -07:00
vim.cmd ' nnoremap <F10> <cmd>ZenMode<CR> '
2022-04-27 17:34:38 -07:00
vim.cmd ' inoremap <F10> <cmd>ZenMode<CR> '
2021-12-02 03:00:51 -08:00
end ,
}
2022-07-26 02:24:10 -07:00
-- use { -- twilight.nvim: dim text outside paragraph or function
2022-01-30 20:05:19 -08:00
-- 'folke/twilight.nvim',
-- config = function()
-- vim.cmd 'command! TW Twilight'
-- require("twilight").setup()
-- end,
-- }
2022-07-26 02:24:10 -07:00
use { -- matchup: Use the percent (%) key for more things
2021-12-02 03:00:51 -08:00
' andymass/vim-matchup ' ,
}
2022-07-26 02:24:10 -07:00
-- use { -- lightspeed: Jump around in files quickly
2021-12-02 03:00:51 -08:00
-- 'ggandor/lightspeed.nvim',
-- }
2022-07-26 02:24:10 -07:00
use { -- indentline: Line indent indicators
2022-01-21 17:41:25 -08:00
' lukas-reineke/indent-blankline.nvim ' ,
2021-12-03 01:05:26 -08:00
config = function ( )
2022-01-21 17:41:25 -08:00
require ( ' blake.other ' ) . indent_blankline ( )
2021-12-03 01:05:26 -08:00
end
}
2022-07-26 02:24:10 -07:00
-- use { -- targets.vim: fix ci' and other things to work right
2022-01-21 17:41:25 -08:00
-- 'wellle/targets.vim',
-- }
2022-08-13 04:07:58 -07:00
use { -- nvim-tree: File explorer
' kyazdani42/nvim-tree.lua ' ,
requires = { ' kyazdani42/nvim-web-devicons ' } ,
tag = ' nightly ' ,
config = function ( )
require ( " nvim-tree " ) . setup ( {
diagnostics = { enable = true , } ,
} )
end
}
2021-09-03 01:18:44 -07:00
-- Conveniences
2022-07-26 02:24:10 -07:00
use { -- sort motion: (gs)
2022-07-13 18:07:07 -07:00
' christoomey/vim-sort-motion ' ,
config = function ( )
vim.cmd [ [
" let g:sort_motion_flags = 'i'
let g : sort_motion_visual_block_command = ' Vissort '
] ]
end ,
requires = ' navicore/vissort.vim ' , -- config requires
}
2022-07-26 02:24:10 -07:00
use { -- ghost: Web browser integration
2021-11-19 18:18:58 -08:00
' raghur/vim-ghost ' ,
2021-11-25 04:32:01 -08:00
opt = true ,
2021-12-02 03:00:51 -08:00
cmd = { ' GhostStart ' , ' GhostInstall ' , ' GhostStop ' , ' GhostSync ' , ' GhostToggleSync ' , } ,
2021-11-19 18:18:58 -08:00
}
2022-07-26 02:24:10 -07:00
use { -- undotree: visual undo tree
2021-09-03 01:18:44 -07:00
' mbbill/undotree ' ,
2021-09-07 01:49:23 -07:00
config = function ( )
2022-08-08 16:36:18 -07:00
vim.api . nvim_set_keymap ( ' n ' , ' <Leader>u ' , ' <cmd>UndotreeToggle<CR> ' , { noremap = true , silent = true , } )
2021-09-07 01:49:23 -07:00
end
2021-09-03 01:18:44 -07:00
}
2022-07-26 02:24:10 -07:00
-- use { -- shade.nvim: dim inactive window
2022-01-21 17:41:25 -08:00
-- 'sunjon/shade.nvim',
-- config = function()
-- require'shade'.setup({
-- overlay_opacity = 50,
-- opacity_step = 1,
-- keys = {
-- brightness_up = '<C-Up>',
-- brightness_down = '<C-Down>',
-- toggle = '<Leader>s',
-- }
-- })
-- end
-- }
2022-07-26 02:24:10 -07:00
use { -- nvim-autopairs: automatic quote pairing
2021-11-16 23:26:02 -08:00
' windwp/nvim-autopairs ' ,
config = function ( )
2022-06-22 01:42:34 -07:00
-- If you want insert `(` after select function or method item
local cmp_autopairs = require ( ' nvim-autopairs.completion.cmp ' )
local cmp = require ( ' cmp ' )
cmp.event : on (
' confirm_done ' ,
cmp_autopairs.on_confirm_done ( )
)
require ( ' nvim-autopairs ' ) . setup ( {
2022-08-08 16:36:18 -07:00
check_ts = true ,
map_c_h = true ,
map_c_w = true ,
2022-06-22 01:42:34 -07:00
} )
2022-07-13 18:07:07 -07:00
end ,
requires = ' hrsh7th/nvim-cmp ' , -- config requires
2021-11-16 23:26:02 -08:00
}
2022-07-26 02:24:10 -07:00
use { -- ts-autotag: automatically close html tags
2022-06-22 01:42:34 -07:00
' windwp/nvim-ts-autotag ' ,
config = function ( )
require ( ' nvim-ts-autotag ' ) . setup ( )
end
}
2022-07-26 02:24:10 -07:00
use { -- endwise: auto add 'end' keyword when typing loops in various languages
2022-06-22 01:42:34 -07:00
' RRethy/nvim-treesitter-endwise ' ,
config = function ( )
require ( ' nvim-treesitter.configs ' ) . setup {
endwise = {
enable = true ,
} ,
}
end
}
2022-06-05 11:42:12 -07:00
use { -- cheat.sh integration
2021-09-27 20:29:55 -07:00
' dbeniamine/cheat.sh-vim ' ,
2022-02-06 23:08:44 -08:00
}
2022-07-26 02:24:10 -07:00
use { -- nvim-align: Align text
2022-07-26 02:21:23 -07:00
' RRethy/nvim-align ' ,
2021-09-26 14:29:44 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- comment.nvim: toggle comments - gb and gc
2022-08-13 01:58:52 -07:00
' numToStr/Comment.nvim ' ,
config = function ( )
require ( ' Comment ' ) . setup {
mappings = {
extra = true ,
extended = true ,
}
}
end
}
2022-07-26 02:24:10 -07:00
use { -- vim-illuminate: highlight other occurrences of the word under cursor
2022-07-26 02:21:23 -07:00
' RRethy/vim-illuminate ' ,
}
2022-07-26 02:24:10 -07:00
use { -- filetype.nvim: detect filetype a lot faster than stock neovim
2022-07-26 02:21:23 -07:00
' nathom/filetype.nvim ' ,
}
2022-07-26 02:24:10 -07:00
use { -- vim-rooter: cd to the root of a project when opening a file or folder
2022-07-26 02:21:23 -07:00
' notjedi/nvim-rooter.lua ' ,
}
2022-07-26 02:24:10 -07:00
use { -- splitjoin: switch between single line and multiline versions of code - gJ and gS
2022-07-26 02:21:23 -07:00
' AndrewRadev/splitjoin.vim ' ,
}
2022-08-13 02:03:55 -07:00
use { -- which-key: remind me what that one keybind does again?
' folke/which-key.nvim ' ,
config = function ( )
require ( " which-key " ) . setup ( )
end ,
}
2022-08-14 15:49:06 -07:00
use { -- marks.nvim: Show marks in sign column
' chentoast/marks.nvim ' ,
config = function ( )
require ( ' marks ' ) . setup ( )
end
}
2022-07-26 02:24:10 -07:00
use { -- rhysd: clever-split: split calculation based on pane dimensions - CS or CleverSplit
2022-07-26 02:21:23 -07:00
' rhysd/clever-split.vim ' ,
config = function ( )
-- Map :CS to :CleverSplit
vim.cmd ' command! CS CleverSplit '
end
}
2022-07-26 02:24:10 -07:00
use { -- rhysd: textobj-anyblock: allow ab or ib instead of i( or a[ or any of the many other block selectors
2022-07-26 02:21:23 -07:00
' rhysd/vim-textobj-anyblock ' ,
requires = ' kana/vim-textobj-user ' ,
}
2022-07-26 02:24:10 -07:00
-- use { -- rhysd: accelerated jk: make j and k move faster by pressing them a lot movement
2022-07-26 02:21:23 -07:00
-- 'rhysd/accelerated-jk',
-- }
2022-07-26 02:24:10 -07:00
use { -- rhysd: committia: better commit editing window
2022-01-21 17:41:25 -08:00
' rhysd/committia.vim ' ,
}
2022-07-26 02:24:10 -07:00
use { -- rhysd: conflict-marker: mark git conflicts - [x, ]x, co, ct, cb, cB, cn
2022-01-21 17:41:25 -08:00
' rhysd/conflict-marker.vim ' ,
}
2022-07-26 02:24:10 -07:00
use { -- lewis6991: spellsitter: Spell checking in treesitter files
2022-06-04 22:27:17 -07:00
' lewis6991/spellsitter.nvim ' ,
config = function ( )
require ( ' spellsitter ' ) . setup ( )
end ,
}
2022-07-26 02:24:10 -07:00
use { -- lewis6991: spaceless: Strip trailing whitespace as you are editing
2021-12-02 03:00:51 -08:00
' lewis6991/spaceless.nvim ' ,
config = function ( )
require ' spaceless ' . setup ( )
end ,
}
2022-07-26 02:24:10 -07:00
use { -- lewis6991: foldsigns: signcolumn signs on folded lines
2021-12-02 03:00:51 -08:00
' lewis6991/foldsigns.nvim ' ,
config = function ( )
require ( ' foldsigns ' ) . setup ( )
end ,
}
2022-07-26 02:24:10 -07:00
use { -- lewis6991: cleanfold: folds have never looked better
2022-06-05 11:42:12 -07:00
' lewis6991/cleanfold.nvim ' ,
config = function ( )
require ( ' cleanfold ' ) . setup ( )
end ,
}
2022-07-26 02:24:10 -07:00
-- use { -- lewis6991: sattelite: small scroll bar
2022-06-12 05:12:39 -07:00
-- 'lewis6991/satellite.nvim',
-- config = function()
-- require('satellite').setup()
-- vim.cmd [[
-- nnoremap <C-l> <cmd>nohlsearch\|diffupdate\|SatelliteRefresh<CR>
-- inoremap <C-l> <cmd>nohlsearch\|diffupdate\|SatelliteRefresh<CR>
-- ]]
-- end,
-- }
2022-07-26 02:24:10 -07:00
use { -- tpope: surround: surround text with quotes, parens, tags, and more - ys
2022-07-26 02:21:23 -07:00
' tpope/vim-surround ' ,
2021-09-03 01:18:44 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- tpope: fugitive: git integration
2022-07-26 02:21:23 -07:00
' tpope/vim-fugitive ' ,
2021-09-03 01:18:44 -07:00
}
2022-07-26 02:24:10 -07:00
use { -- tpope: repeat: Repeatability for various tpope plugins
2021-09-03 01:18:44 -07:00
' tpope/vim-repeat ' ,
}
2022-07-26 02:24:10 -07:00
use { -- tpope: sleuth: automatically get info about files and apply it to vim (tabs vs spaces, etc)
2022-01-02 17:40:03 -08:00
' tpope/vim-sleuth ' ,
}
2021-09-25 02:19:19 -07:00
2021-10-20 10:57:24 -07:00
-- Bootstrap packer if needed {
2022-08-13 01:58:52 -07:00
if ( packer_bootstrap ) then
2022-08-13 04:13:31 -07:00
print ( ' Please wait for packer to install plugins ' )
2021-10-20 10:57:24 -07:00
require ( ' packer ' ) . sync ( )
2022-08-08 17:16:36 -07:00
end
-- }
2021-11-25 04:32:01 -08:00
end ,
config = {
2022-08-13 04:20:43 -07:00
-- Make packer a floating window with single border
display = {
open_fn = function ( )
return require ( ' packer.util ' ) . float ( { border = ' single ' } )
end
} ,
2022-08-13 04:07:58 -07:00
-- Move to lua dir so impatient.nvim can cache it
compile_path = vim.fn . stdpath ( ' config ' ) .. ' /lua/packer_compiled.lua ' ,
-- Don't ask before removing plugins
autoremove = true ,
2021-11-25 04:32:01 -08:00
} } )
2021-09-03 01:18:44 -07:00
2022-08-13 04:07:58 -07:00
-- how to align all plugin descriptions: select all plugins in visual line, :'<,'>Align \(.\+use { -- .\+: \+\)\@<=[^ ][^:]\+$
2021-11-25 04:32:01 -08:00
-- vim:fdm=marker:fmr={,}:fdl=1:expandtab:tabstop=3:sw=3