nvim: add AdvancedSorters
This commit is contained in:
parent
e8fdc9fecd
commit
1f09d2d251
1 changed files with 3 additions and 6 deletions
|
@ -101,9 +101,6 @@ return require('packer').startup({function()
|
||||||
-- commit = '27f6ef135a88d9410a33cf92fc47f5c018df552c', -- for finding the correct color to make highlights
|
-- commit = '27f6ef135a88d9410a33cf92fc47f5c018df552c', -- for finding the correct color to make highlights
|
||||||
config = function()
|
config = function()
|
||||||
vim.keymap.set('n', '<a-i>', require('illuminate').toggle_freeze_buf)
|
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({
|
require('illuminate').configure({
|
||||||
providers = {
|
providers = {
|
||||||
'treesitter',
|
'treesitter',
|
||||||
|
@ -394,6 +391,9 @@ return require('packer').startup({function()
|
||||||
'navicore/vissort.vim',
|
'navicore/vissort.vim',
|
||||||
cmd = 'Vissort',
|
cmd = 'Vissort',
|
||||||
}
|
}
|
||||||
|
use { -- AdvancedSorters: More ways to sort text - :Sort....
|
||||||
|
'inkarkat/vim-AdvancedSorters'
|
||||||
|
}
|
||||||
use { -- ghost: Web browser integration
|
use { -- ghost: Web browser integration
|
||||||
'raghur/vim-ghost',
|
'raghur/vim-ghost',
|
||||||
opt = true,
|
opt = true,
|
||||||
|
@ -484,9 +484,6 @@ return require('packer').startup({function()
|
||||||
}
|
}
|
||||||
end,
|
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
|
use { -- vim-rooter: cd to the root of a project when opening a file or folder
|
||||||
'notjedi/nvim-rooter.lua',
|
'notjedi/nvim-rooter.lua',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue