Minor cleanup

This commit is contained in:
Andrew Tomaka 2024-09-21 13:20:47 -04:00
parent d287f0885e
commit 937a4a4c9d
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
3 changed files with 27 additions and 30 deletions

View file

@ -1,9 +0,0 @@
{
"extras": [
],
"news": {
"NEWS.md": "6520"
},
"version": 6
}

View file

@ -1,6 +1,13 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then if not vim.loop.fs_stat(lazypath) then
vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath
})
end end
vim.opt.rtp:prepend(vim.env.LAZY or lazypath) vim.opt.rtp:prepend(vim.env.LAZY or lazypath)

View file

@ -1,26 +1,25 @@
return { return {
{"nvim-lua/plenary.nvim"}, "nvim-lua/plenary.nvim",
{"nvim-telescope/telescope.nvim"}, "nvim-telescope/telescope.nvim",
{"famiu/bufdelete.nvim"}, "famiu/bufdelete.nvim",
{"dhruvasagar/vim-zoom"}, "dhruvasagar/vim-zoom",
{"gpanders/editorconfig.nvim"}, "gpanders/editorconfig.nvim",
{"johnfrankmorgan/whitespace.nvim"}, "johnfrankmorgan/whitespace.nvim",
{"kylechui/nvim-surround"}, "kylechui/nvim-surround",
-- "FabijanZulj/blame.nvim", -- "FabijanZulj/blame.nvim",
{"rhysd/git-messenger.vim"}, "rhysd/git-messenger.vim",
{"lewis6991/gitsigns.nvim"}, "lewis6991/gitsigns.nvim",
{"linrongbin16/gitlinker.nvim"}, "linrongbin16/gitlinker.nvim",
{"f-person/git-blame.nvim"}, "f-person/git-blame.nvim",
{"tpope/vim-eunuch"}, "tpope/vim-eunuch",
{"gruvbox-community/gruvbox"}, "gruvbox-community/gruvbox",
-- languages -- languages
{"fatih/vim-go"}, "fatih/vim-go",
{"hashivim/vim-terraform"}, "hashivim/vim-terraform",
{"leafgarland/typescript-vim"}, "leafgarland/typescript-vim",
{"tpope/vim-markdown"}, "tpope/vim-markdown",
{"tpope/vim-rails"}, "tpope/vim-rails",
{"vim-ruby/vim-ruby"}, "vim-ruby/vim-ruby",
"neovim/nvim-lspconfig"
} }