nvim: Cleanup some plugins
This commit is contained in:
parent
000d30cb5a
commit
7d7b0c3a3f
6 changed files with 51 additions and 111 deletions
|
@ -4,7 +4,10 @@ local diagnostic_utils = require('nifoc.utils.diagnostic')
|
||||||
|
|
||||||
local function custom_attach(client, bufnr)
|
local function custom_attach(client, bufnr)
|
||||||
-- Plugin attachments
|
-- Plugin attachments
|
||||||
lsp_status.on_attach(client, bufnr)
|
|
||||||
|
if client.resolved_capabilities.document_symbol then
|
||||||
|
lsp_status.on_attach(client, bufnr)
|
||||||
|
end
|
||||||
|
|
||||||
if client.resolved_capabilities.document_highlight then
|
if client.resolved_capabilities.document_highlight then
|
||||||
require('illuminate').on_attach(client, bufnr)
|
require('illuminate').on_attach(client, bufnr)
|
||||||
|
|
|
@ -73,11 +73,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1648751066,
|
"lastModified": 1648847985,
|
||||||
"narHash": "sha256-pYUSID9rSgYnl4PNa45/haCaHUKzY+Ul0fkqqSGflxs=",
|
"narHash": "sha256-Uj4y08YLm1eogzEZAtyzdgbAPilPCxmNwgWm4XP2Nno=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "cf62e96bf7c72e6a88e0bd43165110f42e44cdb4",
|
"rev": "38156bd4ede9b5b92a7313033e000c1cad767553",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
11
home.nix
11
home.nix
|
@ -63,15 +63,16 @@
|
||||||
activation = {
|
activation = {
|
||||||
updateAppCaches = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
updateAppCaches = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
||||||
# neovim
|
# neovim
|
||||||
echo -n 'Removing luacache file: '
|
echo -n '[nvim] Removing luacache file: '
|
||||||
rm -f "$HOME/.cache/nvim/luacache"
|
rm -f $HOME/.cache/nvim/luacache*
|
||||||
echo 'Done'
|
echo 'Done'
|
||||||
|
'';
|
||||||
|
|
||||||
|
updateRuntimeDependencies = lib.hm.dag.entryAfter [ "updateAppCaches" ] ''
|
||||||
|
# neovim
|
||||||
nvim_bin="$newGenPath/home-path/bin/nvim"
|
nvim_bin="$newGenPath/home-path/bin/nvim"
|
||||||
if [ -e "$nvim_bin" ]; then
|
if [ -e "$nvim_bin" ]; then
|
||||||
echo -n 'Running LuaCacheClear: '
|
echo -n '[nvim] Running TSUpdateSync ... '
|
||||||
$nvim_bin -c 'try | execute "LuaCacheClear" | echo "Done" | catch /.*/ | echo "Command not found" | endtry | q' --headless
|
|
||||||
printf '\nRunning TSUpdateSync ... '
|
|
||||||
$nvim_bin -c 'try | execute "TSUpdateSync" | echo "Done" | catch /.*/ | echo "Command not found" | endtry | q' --headless
|
$nvim_bin -c 'try | execute "TSUpdateSync" | echo "Done" | catch /.*/ | echo "Command not found" | endtry | q' --headless
|
||||||
printf '\n'
|
printf '\n'
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -4,16 +4,6 @@ let
|
||||||
customPlugins = import ./plugins.nix { inherit pkgs; };
|
customPlugins = import ./plugins.nix { inherit pkgs; };
|
||||||
|
|
||||||
nvim-spell-directory = "${config.xdg.configHome}/nvim/spell";
|
nvim-spell-directory = "${config.xdg.configHome}/nvim/spell";
|
||||||
|
|
||||||
nvim-spell-de-utf8-dictionary = builtins.fetchurl {
|
|
||||||
url = "http://ftp.vim.org/pub/vim/runtime/spell/de.utf-8.spl";
|
|
||||||
sha256 = "73c7107ea339856cdbe921deb92a45939c4de6eb9c07261da1b9dd19f683a3d1";
|
|
||||||
};
|
|
||||||
|
|
||||||
nvim-spell-de-utf8-suggestions = builtins.fetchurl {
|
|
||||||
url = "http://ftp.vim.org/pub/vim/runtime/spell/de.utf-8.sug";
|
|
||||||
sha256 = "13d0ecf92863d89ef60cd4a8a5eb2a5a13a0e8f9ba8d1c6abe47aba85714a948";
|
|
||||||
};
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
|
@ -63,10 +53,9 @@ in
|
||||||
statix
|
statix
|
||||||
];
|
];
|
||||||
|
|
||||||
plugins = with customPlugins; [
|
plugins = (with customPlugins; [
|
||||||
# Fixes
|
# Fixes
|
||||||
impatient-nvim
|
impatient-nvim
|
||||||
FixCursorHold-nvim
|
|
||||||
|
|
||||||
# Utils
|
# Utils
|
||||||
popup-nvim
|
popup-nvim
|
||||||
|
@ -86,7 +75,6 @@ in
|
||||||
# Syntax
|
# Syntax
|
||||||
nvim-treesitter
|
nvim-treesitter
|
||||||
playground
|
playground
|
||||||
Jenkinsfile-vim-syntax
|
|
||||||
|
|
||||||
# Telescope
|
# Telescope
|
||||||
telescope-nvim
|
telescope-nvim
|
||||||
|
@ -127,10 +115,8 @@ in
|
||||||
|
|
||||||
# Textobjects
|
# Textobjects
|
||||||
nvim-treesitter-textobjects
|
nvim-treesitter-textobjects
|
||||||
vim-surround
|
|
||||||
|
|
||||||
# UI
|
# UI
|
||||||
undotree
|
|
||||||
lualine-nvim
|
lualine-nvim
|
||||||
bufferline-nvim
|
bufferline-nvim
|
||||||
nvim-tree-lua
|
nvim-tree-lua
|
||||||
|
@ -142,8 +128,16 @@ in
|
||||||
nvim-notify
|
nvim-notify
|
||||||
nvim-visual-eof-lua
|
nvim-visual-eof-lua
|
||||||
FTerm-nvim
|
FTerm-nvim
|
||||||
editorconfig-vim
|
]) ++ (with pkgs.vimPlugins; [
|
||||||
];
|
# Fixes
|
||||||
|
FixCursorHold-nvim
|
||||||
|
|
||||||
|
# Textobjects
|
||||||
|
vim-surround
|
||||||
|
|
||||||
|
# UI
|
||||||
|
undotree
|
||||||
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile.nvim = {
|
xdg.configFile.nvim = {
|
||||||
|
@ -151,8 +145,15 @@ in
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file."${nvim-spell-directory}/de.utf-8.spl".source = nvim-spell-de-utf8-dictionary;
|
home.file."${nvim-spell-directory}/de.utf-8.spl".source = builtins.fetchurl {
|
||||||
home.file."${nvim-spell-directory}/de.utf-8.sug".source = nvim-spell-de-utf8-suggestions;
|
url = "http://ftp.vim.org/pub/vim/runtime/spell/de.utf-8.spl";
|
||||||
|
sha256 = "73c7107ea339856cdbe921deb92a45939c4de6eb9c07261da1b9dd19f683a3d1";
|
||||||
|
};
|
||||||
|
|
||||||
|
home.file."${nvim-spell-directory}/de.utf-8.sug".source = builtins.fetchurl {
|
||||||
|
url = "http://ftp.vim.org/pub/vim/runtime/spell/de.utf-8.sug";
|
||||||
|
sha256 = "13d0ecf92863d89ef60cd4a8a5eb2a5a13a0e8f9ba8d1c6abe47aba85714a948";
|
||||||
|
};
|
||||||
|
|
||||||
home.sessionVariables.EDITOR = "nvim";
|
home.sessionVariables.EDITOR = "nvim";
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,18 +13,6 @@
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/lewis6991/impatient.nvim";
|
meta.homepage = "https://github.com/lewis6991/impatient.nvim";
|
||||||
};
|
};
|
||||||
FixCursorHold-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
|
||||||
pname = "FixCursorHold.nvim";
|
|
||||||
version = "1645084379";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "antoinemadec";
|
|
||||||
repo = "FixCursorHold.nvim";
|
|
||||||
rev = "1bfb32e7ba1344925ad815cb0d7f901dbc0ff7c1";
|
|
||||||
sha256 = "OFQkcciHQa4Mp3BieBY5EqMsTqT40e1S41+oa6ZzMSw=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/antoinemadec/FixCursorHold.nvim";
|
|
||||||
};
|
|
||||||
popup-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
popup-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "popup.nvim";
|
pname = "popup.nvim";
|
||||||
version = "1637254091";
|
version = "1637254091";
|
||||||
|
@ -111,12 +99,12 @@
|
||||||
};
|
};
|
||||||
leap-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
leap-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "leap.nvim";
|
pname = "leap.nvim";
|
||||||
version = "1648376635";
|
version = "1648801356";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "ggandor";
|
owner = "ggandor";
|
||||||
repo = "leap.nvim";
|
repo = "leap.nvim";
|
||||||
rev = "6bf18bbec28f06013e418071b39befa37b189010";
|
rev = "df770841885f22d4cc7265fa74290c5afe371591";
|
||||||
sha256 = "VUVRzemq3eTvaDvrGEF7OVjJDpicgdym6z7IA1n2GvI=";
|
sha256 = "6cKVGt8Z9d6IuPVRaGwSwp3hoWVDilAIketNDi8767w=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/ggandor/leap.nvim";
|
meta.homepage = "https://github.com/ggandor/leap.nvim";
|
||||||
|
@ -135,12 +123,12 @@
|
||||||
};
|
};
|
||||||
nvim-treesitter = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
nvim-treesitter = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "nvim-treesitter";
|
pname = "nvim-treesitter";
|
||||||
version = "1648801168";
|
version = "1648825746";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "nvim-treesitter";
|
owner = "nvim-treesitter";
|
||||||
repo = "nvim-treesitter";
|
repo = "nvim-treesitter";
|
||||||
rev = "095c7cde84214df66d1ffe0b9a206b2632229acd";
|
rev = "aadad4738e8453b3b0928ba0aa8f49b6878abace";
|
||||||
sha256 = "T6hZD6X14Huh9L7L9qjHUMKlDQDH6SCzp3qngk1O858=";
|
sha256 = "DGNsmVYdGf9yvyYZgwpjSxxLnvVrEDMdF6uBz0I8HwM=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter";
|
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter";
|
||||||
|
@ -157,18 +145,6 @@
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/nvim-treesitter/playground";
|
meta.homepage = "https://github.com/nvim-treesitter/playground";
|
||||||
};
|
};
|
||||||
Jenkinsfile-vim-syntax = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
|
||||||
pname = "Jenkinsfile-vim-syntax";
|
|
||||||
version = "1611625602";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "martinda";
|
|
||||||
repo = "Jenkinsfile-vim-syntax";
|
|
||||||
rev = "0d05729168ea44d60862f17cffa80024ab30bcc9";
|
|
||||||
sha256 = "/qUlzGfo2OhHEBGaoTH8K4VVT0Zg9ocJBb84orMD4xc=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/martinda/Jenkinsfile-vim-syntax";
|
|
||||||
};
|
|
||||||
telescope-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
telescope-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "telescope.nvim";
|
pname = "telescope.nvim";
|
||||||
version = "1648744958";
|
version = "1648744958";
|
||||||
|
@ -322,12 +298,12 @@
|
||||||
};
|
};
|
||||||
nvim-cmp = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
nvim-cmp = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "nvim-cmp";
|
pname = "nvim-cmp";
|
||||||
version = "1648702165";
|
version = "1648830769";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "hrsh7th";
|
owner = "hrsh7th";
|
||||||
repo = "nvim-cmp";
|
repo = "nvim-cmp";
|
||||||
rev = "15f08a8faa22d52480cdcb9ef9ca698120f04363";
|
rev = "7dbe34e36d9de4912a5f3aa5279540445765814c";
|
||||||
sha256 = "kuzp4ki0O2RP0PnxaSFNxXvQozZnz4KU9Um0bmFfocs=";
|
sha256 = "7qsLuko9Jeipqv30y2brTFjzFnZSXaMSHShgY08Nv2w=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/hrsh7th/nvim-cmp";
|
meta.homepage = "https://github.com/hrsh7th/nvim-cmp";
|
||||||
|
@ -358,24 +334,24 @@
|
||||||
};
|
};
|
||||||
LuaSnip = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
LuaSnip = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "LuaSnip";
|
pname = "LuaSnip";
|
||||||
version = "1648481086";
|
version = "1648820436";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "L3MON4D3";
|
owner = "L3MON4D3";
|
||||||
repo = "LuaSnip";
|
repo = "LuaSnip";
|
||||||
rev = "065d52d45fbb30c117d260813ee2f72094cd1568";
|
rev = "eb5b77e7927e4b28800b4f40c5507d6396b7eeaf";
|
||||||
sha256 = "PLEBqDxZEQb8hyITOmFUkPURUAubvIQZd6Ch/BU2zbk=";
|
sha256 = "C01ls/H/uuycWmNk8RPyL1xLeptJSyELznoyMVPLUg4=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/L3MON4D3/LuaSnip";
|
meta.homepage = "https://github.com/L3MON4D3/LuaSnip";
|
||||||
};
|
};
|
||||||
cmp_luasnip = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
cmp_luasnip = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "cmp_luasnip";
|
pname = "cmp_luasnip";
|
||||||
version = "1648406903";
|
version = "1648846007";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "saadparwaiz1";
|
owner = "saadparwaiz1";
|
||||||
repo = "cmp_luasnip";
|
repo = "cmp_luasnip";
|
||||||
rev = "adf4a521f293f97bfd177fa8fcfd3955dff6505a";
|
rev = "b10829736542e7cc9291e60bab134df1273165c9";
|
||||||
sha256 = "tyNWh7oFeuVPPP+KV9xlyUIj8Nt9OliSKFinz0dxB3I=";
|
sha256 = "1JiDa7fK9AEMUxLOFD3SSsxKEVLfd5xR8vfUlLRqz+M=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip";
|
meta.homepage = "https://github.com/saadparwaiz1/cmp_luasnip";
|
||||||
|
@ -500,18 +476,6 @@
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects";
|
meta.homepage = "https://github.com/nvim-treesitter/nvim-treesitter-textobjects";
|
||||||
};
|
};
|
||||||
vim-surround = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
|
||||||
pname = "vim-surround";
|
|
||||||
version = "1648239196";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "tpope";
|
|
||||||
repo = "vim-surround";
|
|
||||||
rev = "9857a874632d1b983a7f4b1c85e3d15990c8b101";
|
|
||||||
sha256 = "e8y3vtUcnFhRTmjj23gbxG0NK/fhvZ0ozZbSvF/GDEY=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/tpope/vim-surround";
|
|
||||||
};
|
|
||||||
vim-matchup = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
vim-matchup = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "vim-matchup";
|
pname = "vim-matchup";
|
||||||
version = "1645154316";
|
version = "1645154316";
|
||||||
|
@ -524,18 +488,6 @@
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/andymass/vim-matchup";
|
meta.homepage = "https://github.com/andymass/vim-matchup";
|
||||||
};
|
};
|
||||||
undotree = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
|
||||||
pname = "undotree";
|
|
||||||
version = "1645039348";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "mbbill";
|
|
||||||
repo = "undotree";
|
|
||||||
rev = "08e259be24d4476c1ee745dc735eefd44f90efdc";
|
|
||||||
sha256 = "vsbJxVIAxwPssVC3wGNQmoUw8XNw4itkQx1SoDMvk5Q=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/mbbill/undotree";
|
|
||||||
};
|
|
||||||
lualine-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
lualine-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "lualine.nvim";
|
pname = "lualine.nvim";
|
||||||
version = "1648799169";
|
version = "1648799169";
|
||||||
|
@ -550,12 +502,12 @@
|
||||||
};
|
};
|
||||||
bufferline-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
bufferline-nvim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
||||||
pname = "bufferline.nvim";
|
pname = "bufferline.nvim";
|
||||||
version = "1648723010";
|
version = "1648834632";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
owner = "akinsho";
|
owner = "akinsho";
|
||||||
repo = "bufferline.nvim";
|
repo = "bufferline.nvim";
|
||||||
rev = "98bc649c0f2f421aacf4dc4bacf50958d390a82a";
|
rev = "004cd5734fb21e39d48c1fb1469fa63e2797880b";
|
||||||
sha256 = "RuQ/FCD8nmvSTIhaQtj7D/1JlXvL0Fg4P3QdKm1y570=";
|
sha256 = "EMP7zqZH/E19OPQHoEZVz1rWhluqu5GAnybPW4lNJuc=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/akinsho/bufferline.nvim";
|
meta.homepage = "https://github.com/akinsho/bufferline.nvim";
|
||||||
|
@ -668,16 +620,4 @@
|
||||||
};
|
};
|
||||||
meta.homepage = "https://github.com/numToStr/FTerm.nvim";
|
meta.homepage = "https://github.com/numToStr/FTerm.nvim";
|
||||||
};
|
};
|
||||||
editorconfig-vim = pkgs.vimUtils.buildVimPluginFrom2Nix {
|
|
||||||
pname = "editorconfig-vim";
|
|
||||||
version = "1642820146";
|
|
||||||
src = pkgs.fetchFromGitHub {
|
|
||||||
owner = "editorconfig";
|
|
||||||
repo = "editorconfig-vim";
|
|
||||||
rev = "a8e3e66deefb6122f476c27cee505aaae93f7109";
|
|
||||||
sha256 = "dtIAIOLskw5rsEuI23aUVTl+JJy59+O820SZO2K0ZqY=";
|
|
||||||
fetchSubmodules = true;
|
|
||||||
};
|
|
||||||
meta.homepage = "https://github.com/editorconfig/editorconfig-vim";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# Fixes
|
# Fixes
|
||||||
- src: lewis6991/impatient.nvim
|
- src: lewis6991/impatient.nvim
|
||||||
- src: antoinemadec/FixCursorHold.nvim
|
|
||||||
|
|
||||||
# Utils
|
# Utils
|
||||||
- src: nvim-lua/popup.nvim
|
- src: nvim-lua/popup.nvim
|
||||||
|
@ -20,7 +19,6 @@
|
||||||
# Syntax
|
# Syntax
|
||||||
- src: nvim-treesitter/nvim-treesitter
|
- src: nvim-treesitter/nvim-treesitter
|
||||||
- src: nvim-treesitter/playground
|
- src: nvim-treesitter/playground
|
||||||
- src: martinda/Jenkinsfile-vim-syntax
|
|
||||||
|
|
||||||
# Telescope
|
# Telescope
|
||||||
- src: nvim-telescope/telescope.nvim
|
- src: nvim-telescope/telescope.nvim
|
||||||
|
@ -68,11 +66,9 @@
|
||||||
|
|
||||||
# Textobjects
|
# Textobjects
|
||||||
- src: nvim-treesitter/nvim-treesitter-textobjects
|
- src: nvim-treesitter/nvim-treesitter-textobjects
|
||||||
- src: tpope/vim-surround
|
|
||||||
|
|
||||||
# UI
|
# UI
|
||||||
- src: andymass/vim-matchup
|
- src: andymass/vim-matchup
|
||||||
- src: mbbill/undotree
|
|
||||||
- src: nvim-lualine/lualine.nvim
|
- src: nvim-lualine/lualine.nvim
|
||||||
- src: akinsho/bufferline.nvim
|
- src: akinsho/bufferline.nvim
|
||||||
- src: kyazdani42/nvim-tree.lua
|
- src: kyazdani42/nvim-tree.lua
|
||||||
|
@ -84,4 +80,3 @@
|
||||||
- src: rcarriga/nvim-notify
|
- src: rcarriga/nvim-notify
|
||||||
- src: LumaKernel/nvim-visual-eof.lua
|
- src: LumaKernel/nvim-visual-eof.lua
|
||||||
- src: numToStr/FTerm.nvim
|
- src: numToStr/FTerm.nvim
|
||||||
- src: editorconfig/editorconfig-vim
|
|
||||||
|
|
Loading…
Reference in a new issue