dotfiles/nvim/lua/plugins.lua

215 lines
6.4 KiB
Lua
Raw Normal View History

2022-02-20 11:10:47 +00:00
local fn = vim.fn
2022-02-21 14:15:15 +00:00
-- boostrap packer
2022-02-22 08:27:45 +00:00
local install_path = fn.stdpath('data') .. '/site/pack/packer/opt/packer.nvim'
2022-02-20 11:10:47 +00:00
local packer_bootstrap
if fn.empty(fn.glob(install_path)) > 0 then
2022-02-22 08:27:45 +00:00
packer_bootstrap = fn.system({
'git', 'clone', 'https://github.com/wbthomason/packer.nvim',
install_path
})
2022-02-20 11:10:47 +00:00
end
2022-02-21 14:15:15 +00:00
-- run PackerSync everytime plugins.lua is updated
vim.cmd([[
2022-02-20 11:10:47 +00:00
augroup packer_user_config
autocmd!
autocmd BufWritePost plugins.lua source <afile> | PackerSync
augroup end
]])
2022-02-21 14:15:15 +00:00
vim.cmd([[packadd packer.nvim]])
-- initialize plugins
2022-02-20 11:10:47 +00:00
return require('packer').startup(function(use)
2022-02-22 08:27:45 +00:00
-- let packer manage itself
use({'wbthomason/packer.nvim', opt = true})
2022-02-21 14:15:15 +00:00
2022-02-22 08:27:45 +00:00
-- theme
2022-02-21 14:15:15 +00:00
use("ishan9299/nvim-solarized-lua")
-- commenting
use {
'numToStr/Comment.nvim',
config = function() require('Comment').setup() end
}
2022-02-21 14:15:15 +00:00
2022-02-22 08:27:45 +00:00
-- session handling
use('tpope/vim-obsession')
use('dhruvasagar/vim-prosession')
-- tabline
use {
'kdheepak/tabline.nvim',
config = function()
require'tabline'.setup {
enable = true,
options = {show_bufnr = true, show_filename_only = true}
2022-02-22 08:27:45 +00:00
}
end,
requires = {
{'hoob3rt/lualine.nvim'},
{'kyazdani42/nvim-web-devicons', opt = true}
}
}
2022-04-02 08:50:40 +00:00
-- status line
use {
'nvim-lualine/lualine.nvim',
requires = {'kyazdani42/nvim-web-devicons', opt = true},
config = function() require('lualine').setup() end
}
2022-02-22 08:27:45 +00:00
-- blankline
use({
"lukas-reineke/indent-blankline.nvim",
config = function()
require("indent_blankline").setup {
char = "",
2022-02-24 06:57:25 +00:00
buftype_exclude = {"terminal", "help", "nofile"},
filetype_exclude = {'help', 'packer'},
show_trailing_blankline_indent = false
2022-02-22 08:27:45 +00:00
}
end
})
-- git
use('tpope/vim-fugitive')
use({
'lewis6991/gitsigns.nvim',
requires = {'nvim-lua/plenary.nvim'},
config = function() require('gitsigns').setup() end
})
2022-04-02 08:50:28 +00:00
use("junegunn/gv.vim")
2022-02-22 08:27:45 +00:00
-- autocompletion
use({
"L3MON4D3/LuaSnip",
requires = {"rafamadriz/friendly-snippets"},
config = function()
require("luasnip.loaders.from_vscode").lazy_load()
end
})
use({
"hrsh7th/nvim-cmp",
requires = {
"hrsh7th/cmp-nvim-lsp", "hrsh7th/cmp-buffer", "hrsh7th/cmp-path",
"hrsh7th/cmp-cmdline", "hrsh7th/cmp-git", "hrsh7th/cmp-nvim-lua",
2022-04-04 17:52:02 +00:00
"saadparwaiz1/cmp_luasnip", "hrsh7th/cmp-nvim-lsp-signature-help",
"davidsierradz/cmp-conventionalcommits", "hrsh7th/cmp-nvim-lua",
"hrsh7th/cmp-calc"
},
config = function()
local has_words_before = function()
local line, col = unpack(vim.api.nvim_win_get_cursor(0))
return col ~= 0 and
vim.api.nvim_buf_get_lines(0, line - 1, line, true)[1]:sub(
col, col):match("%s") == nil
end
local cmp = require('cmp')
local luasnip = require("luasnip")
cmp.setup({
snippet = {
expand = function(args)
require("luasnip").lsp_expand(args.body)
end
},
sources = require("cmp").config.sources({
{name = "nvim_lsp"}, {name = "luasnip"}, {name = "path"},
2022-04-04 17:52:02 +00:00
{name = "buffer"}, {name = "git"},
{name = 'nvim_lsp_signature_help'},
{name = "conventionalcommits"}, {name = "nvim-lua"},
{name = "calc"}
}),
mapping = {
['<C-Space>'] = cmp.mapping(cmp.mapping.complete(),
{'i', 'c'}),
['<CR>'] = cmp.mapping.confirm({select = true}),
["<Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
elseif has_words_before() then
cmp.complete()
else
fallback()
end
end, {"i", "s"}),
["<S-Tab>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip.jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end, {"i", "s"})
2022-04-05 06:08:44 +00:00
},
experimental = {ghost_text = true}
})
-- `/` cmdline setup.
cmp.setup.cmdline('/', {sources = {{name = 'buffer'}}})
-- `:` cmdline setup.
cmp.setup.cmdline(':', {
sources = cmp.config
.sources({{name = 'path'}}, {{name = 'cmdline'}})
})
end
2022-02-22 08:27:45 +00:00
})
2022-02-21 14:15:15 +00:00
-- highlight current symbol
2022-02-22 07:45:55 +00:00
use({"RRethy/vim-illuminate"})
2022-02-21 14:15:15 +00:00
2022-02-22 08:27:45 +00:00
-- language server
use({
"neovim/nvim-lspconfig",
config = function() require("plugins.lspconfig") end
})
2022-02-21 14:15:15 +00:00
use('williamboman/nvim-lsp-installer')
2022-02-22 08:27:45 +00:00
-- treesitter
use({
'nvim-treesitter/nvim-treesitter',
config = function() require('plugins.treesitter') end,
run = ':TSUpdate'
})
2022-02-21 14:15:15 +00:00
2022-02-22 08:27:45 +00:00
-- Telescope
use({
'nvim-telescope/telescope.nvim',
requires = {{'nvim-lua/plenary.nvim'}},
config = function() require('plugins.telescope') end
})
2022-02-24 06:57:25 +00:00
use({'nvim-telescope/telescope-fzf-native.nvim', run = 'make'})
2022-02-21 14:15:15 +00:00
2022-02-22 07:46:12 +00:00
-- automatic pairs
use({"Raimondi/delimitMate"})
2022-02-21 15:46:37 +00:00
-- markdown preview
use({'iamcco/markdown-preview.nvim'})
-- terminal
use({
"akinsho/nvim-toggleterm.lua",
config = function()
2022-02-22 08:27:45 +00:00
require("toggleterm").setup({size = 32, open_mapping = [[<F4>]]})
end
2022-02-21 15:46:37 +00:00
})
2022-02-21 18:54:49 +00:00
-- buffer closing
2022-02-22 08:27:45 +00:00
use({"sar/bbye.nvim"})
2022-02-21 18:54:49 +00:00
2022-02-21 18:55:01 +00:00
-- ansible filetype
use({"pearofducks/ansible-vim"})
2022-02-22 08:27:45 +00:00
if packer_bootstrap then require('packer').sync() end
2022-02-21 14:15:15 +00:00
end)