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"
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
vim.opt.rtp:prepend(vim.env.LAZY or lazypath)

View file

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