Skip to content

Instantly share code, notes, and snippets.

@vbkaisetsu
Last active June 9, 2023 11:27
Show Gist options
  • Save vbkaisetsu/f409c3d196141006fd03d5f5c1ecf4a9 to your computer and use it in GitHub Desktop.
Save vbkaisetsu/f409c3d196141006fd03d5f5c1ecf4a9 to your computer and use it in GitHub Desktop.
vim.cmd[[packadd packer.nvim]]
require'packer'.startup(function()
use'tpope/vim-fugitive'
use'tpope/vim-repeat'
use{'wbthomason/packer.nvim', opt = true}
use{'rhysd/git-messenger.vim', opt = true, cmd = {'GitMessenger'}}
use{'tpope/vim-unimpaired', opt = true, event = {'FocusLost', 'CursorHold'}}
use{'fatih/vim-go', opt = true, ft = {'go'}}
use{
'arecarn/vim-fold-cycle',
opt = true,
keys = {'<CR>'},
}
use{'sainnhe/artify.vim', opt = true, fn = {'Artify'}}
use{
'npxbr/glow.nvim',
cmd = {'Glow', 'GlowInstall'},
run = [[:GlowInstall]],
}
use{
'thinca/vim-fontzoom',
cond = [[vim.fn.has'gui' == 1]],
}
use{
'tyru/capture.vim',
requires = {
{'thinca/vim-prettyprint', cmd = {'PP', 'PrettyPrint'}},
},
cmd = {'Capture'},
}
use {
'nvim-telescope/telescope.nvim',
requires = { {'nvim-lua/plenary.nvim'} }
}
use {
'kyazdani42/nvim-tree.lua',
requires = {
'kyazdani42/nvim-web-devicons', -- optional, for file icons
},
tag = 'nightly' -- optional, updated every week. (see issue #1193)
}
use {
'neoclide/coc.nvim',
branch = 'release'
}
--[[
use "neovim/nvim-lspconfig"
use "williamboman/nvim-lsp-installer"
]]
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment