nvim: add AdvancedSorters

This commit is contained in:
PowerUser64 2022-12-16 22:31:43 -08:00
parent e8fdc9fecd
commit 1f09d2d251

View file

@ -101,9 +101,6 @@ return require('packer').startup({function()
-- commit = '27f6ef135a88d9410a33cf92fc47f5c018df552c', -- for finding the correct color to make highlights
config = function()
vim.keymap.set('n', '<a-i>', require('illuminate').toggle_freeze_buf)
vim.api.nvim_set_hl(0, "IlluminatedWordText", { bg = "#3b4261" })
vim.api.nvim_set_hl(0, "IlluminatedWordRead", { bg = "#3b4261" })
vim.api.nvim_set_hl(0, "IlluminatedWordWrite", { bg = "#3b4261" })
require('illuminate').configure({
providers = {
'treesitter',
@ -394,6 +391,9 @@ return require('packer').startup({function()
'navicore/vissort.vim',
cmd = 'Vissort',
}
use { -- AdvancedSorters: More ways to sort text - :Sort....
'inkarkat/vim-AdvancedSorters'
}
use { -- ghost: Web browser integration
'raghur/vim-ghost',
opt = true,
@ -484,9 +484,6 @@ return require('packer').startup({function()
}
end,
}
use { -- filetype.nvim: detect filetype a lot faster than stock neovim
'nathom/filetype.nvim',
}
use { -- vim-rooter: cd to the root of a project when opening a file or folder
'notjedi/nvim-rooter.lua',
}