dotfiles/nvim/lua/plugins.lua

209 lines
5.7 KiB
Lua
Raw Normal View History

2022-01-18 01:25:46 -05:00
local bootstrap = require('bootstrap')
local function import(name)
2022-11-08 20:32:39 -05:00
return ([[require '%s']]):format(name)
2022-01-18 01:25:46 -05:00
end
2022-11-08 20:32:39 -05:00
return require('packer').startup({ function(use)
use 'wbthomason/packer.nvim'
2022-01-18 01:25:46 -05:00
use {
2022-11-08 20:32:39 -05:00
'vim-airline/vim-airline',
requires = {
'ryanoasis/vim-devicons',
}
}
2022-01-18 01:25:46 -05:00
2022-03-02 01:01:36 -05:00
use {
2022-11-08 20:32:39 -05:00
'mustache/vim-mustache-handlebars'
2022-03-02 01:01:36 -05:00
}
2022-01-18 01:25:46 -05:00
2022-10-29 17:27:30 -04:00
use {
2022-11-08 20:32:39 -05:00
'nvim-treesitter/nvim-treesitter',
run = ':TSUpdate'
2022-10-29 17:27:30 -04:00
}
2022-06-10 09:34:44 -04:00
use {
2022-11-08 20:32:39 -05:00
'petRUShka/vim-sage'
2022-06-10 09:34:44 -04:00
}
2022-05-13 18:15:19 -04:00
use {
2022-11-08 20:32:39 -05:00
'evanleck/vim-svelte'
2022-05-13 18:15:19 -04:00
}
2022-11-21 00:05:55 -05:00
use {
'wuelnerdotexe/vim-astro'
}
2022-11-08 20:32:39 -05:00
use {
'tpope/vim-fugitive',
config = function()
local map = vim.api.nvim_set_keymap
map('n', '<Leader>g', '<Cmd>Git<CR>', { noremap = true })
end,
}
2022-01-18 01:25:46 -05:00
2022-11-08 20:32:39 -05:00
use {
'tpope/vim-surround',
}
2022-09-26 11:00:51 -04:00
2022-11-08 20:32:39 -05:00
use {
'tpope/vim-repeat',
}
2022-09-26 11:00:51 -04:00
2022-11-08 20:32:39 -05:00
use {
'lewis6991/gitsigns.nvim',
requires = {
'nvim-lua/plenary.nvim'
},
config = function()
require('gitsigns').setup {
signs = {
add = { hl = 'GitSignsAdd', text = '', numhl = 'GitSignsAddNr', linehl = 'GitSignsAddLn' },
change = { hl = 'GitSignsChange', text = '', numhl = 'GitSignsChangeNr',
linehl = 'GitSignsChangeLn' },
delete = { hl = 'GitSignsDelete', text = '_', numhl = 'GitSignsDeleteNr',
linehl = 'GitSignsDeleteLn' },
topdelete = { hl = 'GitSignsDelete', text = '', numhl = 'GitSignsDeleteNr',
linehl = 'GitSignsDeleteLn' },
changedelete = { hl = 'GitSignsChange', text = '~', numhl = 'GitSignsChangeNr',
linehl = 'GitSignsChangeLn' },
},
}
end
}
2022-01-18 01:25:46 -05:00
2022-03-26 13:29:14 -04:00
use {
'akinsho/flutter-tools.nvim',
requires = {
'nvim-lua/plenary.nvim'
},
config = function()
2022-11-08 20:32:39 -05:00
require('flutter-tools').setup {
2022-03-26 13:29:14 -04:00
lsp = {
color = {
enabled = false
}
}
}
end
}
2022-11-08 20:32:39 -05:00
use {
'numToStr/Comment.nvim',
config = function()
local map = vim.api.nvim_set_keymap
require('Comment').setup({})
map('n', '<C-_>',
'<Cmd>lua require("Comment.api").toggle_linewise_op(vim.fn.visualmode())<CR>',
{ noremap = true, silent = true })
end
}
use {
'nvim-telescope/telescope.nvim',
requires = {
'nvim-lua/plenary.nvim',
{
'nvim-telescope/telescope-fzf-native.nvim',
run = 'make',
},
'nvim-telescope/telescope-symbols.nvim',
},
config = import('tel'),
}
use {
'stevearc/dressing.nvim',
config = function()
require('dressing').setup({
input = {
default_prompt = '',
2022-12-12 12:30:43 -05:00
win_options = {
winhighlight = 'NormalFloat:Normal',
},
2022-11-08 20:32:39 -05:00
},
})
vim.cmd [[highlight link FloatTitle NonText]]
vim.cmd [[highlight link DressingInputText Normal]]
end,
}
use {
'antoinemadec/FixCursorHold.nvim',
config = function()
vim.g.cursorhold_updatetime = 500
end,
}
use {
'sirver/ultisnips',
ft = { 'latex', 'plaintex', 'tex' },
config = function()
vim.g.UltiSnipsExpandTrigger = '<tab>'
2022-11-09 19:09:19 -05:00
vim.g.UltiSnipsJumpForwardTrigger = '<c-h>'
vim.g.UltiSnipsJumpBackwardTrigger = '<c-b>'
2022-11-08 20:32:39 -05:00
end
}
use {
'neovim/nvim-lspconfig',
2022-10-29 17:27:30 -04:00
-- commit = "607ff48b970b89c3e4e3825b88d9cfd05b7aaea5",
2022-11-08 20:32:39 -05:00
requires = {
'nvim-lua/lsp-status.nvim',
{
'ms-jpq/coq.thirdparty',
},
{
'ms-jpq/coq_nvim',
run = ':COQdeps',
requires = {
'ms-jpq/coq.artifacts',
},
},
{
'jose-elias-alvarez/null-ls.nvim',
requires = {
'nvim-lua/plenary.nvim',
},
},
},
config = import('lsp'),
}
use {
'lervag/vimtex',
config = function()
vim.g.vimtex_view_general_viewer = 'zathura'
2022-12-04 01:27:12 -05:00
vim.g.vimtex_compiler_method = "latexmk"
2022-02-15 16:08:17 -05:00
-- vim.g.vimtex_view_general_options = = '-x nvim -n -c "Vimtex'
-- 'file:@pdf\\#src:@line@tex'
2022-11-08 20:32:39 -05:00
-- vim.g.vimtex_quickfix_enabled = 0
-- vim.g.Tex_GotoError = 0
-- vim.g.Tex_ShowErrorContext = 0
end,
}
use {
'iamcco/markdown-preview.nvim',
2022-09-01 21:18:24 -04:00
commit = "02cc3874738bc0f86e4b91f09b8a0ac88aef8e96",
2022-11-08 20:32:39 -05:00
run = "cd app && npm install",
setup = function() vim.g.mkdp_filetypes = { "markdown" } end, ft = { "markdown" },
config = function()
local map = vim.api.nvim_set_keymap
map('n', '<C-m>', '<Plug>MarkdownPreviewToggle', {})
map('n', '<Leader>m', '<Plug>MarkdownPreviewToggle', {})
vim.g.mkdp_markdown_css = os.getenv("HOME") .. "/.config/nvim/lua/markdownStyle.css"
vim.g.mkdp_highlight_css = os.getenv("HOME") .. "/.cache/wal/colors.css"
end
2022-01-18 01:25:46 -05:00
}
2022-02-15 16:08:17 -05:00
2022-11-08 20:32:39 -05:00
if bootstrap.is_bootstrap then
require('packer').sync()
end
2022-03-26 13:29:14 -04:00
2022-01-18 01:25:46 -05:00
end,
2022-11-08 20:32:39 -05:00
config = {
compile_path = require('packer.util').join_paths(vim.fn.stdpath('data'), 'site', 'plugin', 'packer_compiled.lua'),
} })