2022-09-19 07:47:06 -04:00
|
|
|
local ensure_packer = function()
|
|
|
|
local fn = vim.fn
|
2023-03-08 08:20:53 -05:00
|
|
|
local install_path = fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
|
2022-09-19 07:47:06 -04:00
|
|
|
if fn.empty(fn.glob(install_path)) > 0 then
|
2023-03-08 08:20:53 -05:00
|
|
|
fn.system({ 'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path })
|
2023-04-05 07:57:14 -04:00
|
|
|
vim.cmd 'packadd packer.nvim'
|
2022-09-19 07:47:06 -04:00
|
|
|
return true
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
local packer_bootstrap = ensure_packer()
|
|
|
|
|
|
|
|
vim.cmd([[
|
|
|
|
augroup packer_user_config
|
|
|
|
autocmd!
|
|
|
|
autocmd BufWritePost plugins.lua source <afile> | PackerSync
|
|
|
|
augroup end
|
|
|
|
]])
|
|
|
|
|
|
|
|
return require('packer').startup(function(use)
|
|
|
|
use 'wbthomason/packer.nvim'
|
|
|
|
|
|
|
|
use 'tpope/vim-sensible'
|
|
|
|
use 'tpope/vim-surround'
|
|
|
|
use 'tpope/vim-commentary'
|
|
|
|
use 'tpope/vim-repeat'
|
|
|
|
use 'tpope/vim-dispatch'
|
|
|
|
use 'tpope/vim-abolish'
|
|
|
|
|
|
|
|
use {
|
|
|
|
'tpope/vim-fugitive',
|
|
|
|
'tpope/vim-rhubarb',
|
|
|
|
}
|
|
|
|
|
|
|
|
use 'christoomey/vim-sort-motion'
|
|
|
|
use 'christoomey/vim-tmux-navigator'
|
|
|
|
|
|
|
|
use {
|
|
|
|
'kana/vim-textobj-user',
|
|
|
|
'kana/vim-textobj-indent',
|
|
|
|
'kana/vim-textobj-line',
|
|
|
|
}
|
|
|
|
|
2023-05-02 08:21:37 -04:00
|
|
|
use {
|
|
|
|
'williamboman/mason.nvim',
|
|
|
|
requires = {
|
|
|
|
'williamboman/mason-lspconfig.nvim',
|
|
|
|
'neovim/nvim-lspconfig',
|
2023-08-17 10:20:21 -04:00
|
|
|
'mfussenegger/nvim-lint',
|
|
|
|
'mhartington/formatter.nvim',
|
2023-05-02 08:21:37 -04:00
|
|
|
},
|
|
|
|
run = ':MasonUpdate',
|
|
|
|
config = function()
|
|
|
|
require('mason').setup()
|
|
|
|
require('mason-lspconfig').setup()
|
|
|
|
local capabilities = require('cmp_nvim_lsp').default_capabilities()
|
|
|
|
require("mason-lspconfig").setup_handlers({
|
|
|
|
function (server_name) -- default handler
|
|
|
|
require("lspconfig")[server_name].setup({
|
|
|
|
capabilities = capabilities
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
-- Next, you can provide a dedicated handler for specific servers.
|
|
|
|
-- For example, a handler override for the `rust_analyzer`:
|
|
|
|
-- ["rust_analyzer"] = function ()
|
|
|
|
-- require("rust-tools").setup {}
|
|
|
|
-- end
|
|
|
|
})
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
|
|
|
use {
|
|
|
|
'hrsh7th/nvim-cmp',
|
|
|
|
requires = {
|
|
|
|
'hrsh7th/cmp-nvim-lsp',
|
|
|
|
'hrsh7th/cmp-buffer',
|
|
|
|
'hrsh7th/cmp-path',
|
|
|
|
'hrsh7th/cmp-cmdline',
|
2023-06-30 10:19:04 -04:00
|
|
|
'hrsh7th/cmp-vsnip',
|
|
|
|
'hrsh7th/vim-vsnip',
|
2023-05-02 08:21:37 -04:00
|
|
|
},
|
|
|
|
config = function()
|
|
|
|
local cmp = require('cmp')
|
|
|
|
|
|
|
|
cmp.setup({
|
2023-06-30 10:19:04 -04:00
|
|
|
snippet = {
|
|
|
|
expand = function(args)
|
|
|
|
vim.fn['vsnip#anonymous'](args.body)
|
|
|
|
end,
|
|
|
|
},
|
2023-05-02 08:21:37 -04:00
|
|
|
mapping = cmp.mapping.preset.insert({}),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'nvim_lsp' },
|
2023-06-30 10:19:04 -04:00
|
|
|
{ name = 'vsnip' },
|
2023-05-02 08:21:37 -04:00
|
|
|
}, {
|
|
|
|
{ name = 'buffer' },
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Use buffer source for `/` and `?` (if you enabled `native_menu`, this won't work anymore).
|
|
|
|
cmp.setup.cmdline({ '/', '?' }, {
|
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = {
|
|
|
|
{ name = 'buffer' }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- Use cmdline & path source for ':' (if you enabled `native_menu`, this won't work anymore).
|
|
|
|
cmp.setup.cmdline(':', {
|
|
|
|
mapping = cmp.mapping.preset.cmdline(),
|
|
|
|
sources = cmp.config.sources({
|
|
|
|
{ name = 'path' }
|
|
|
|
}, {
|
|
|
|
{ name = 'cmdline' }
|
|
|
|
})
|
|
|
|
})
|
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2023-04-05 07:57:14 -04:00
|
|
|
use 'sheerun/vim-polyglot'
|
|
|
|
use {
|
|
|
|
'nvim-treesitter/nvim-treesitter',
|
|
|
|
run = function()
|
|
|
|
local ts_update = require('nvim-treesitter.install').update({ with_sync = true })
|
|
|
|
ts_update()
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('nvim-treesitter.configs').setup({
|
|
|
|
indent = { enable = true },
|
|
|
|
highlight = { enable = true },
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
}
|
|
|
|
|
2022-09-19 07:47:06 -04:00
|
|
|
use {
|
2024-03-06 10:43:47 -05:00
|
|
|
'nvim-telescope/telescope.nvim', tag = '0.1.5',
|
2022-09-19 07:47:06 -04:00
|
|
|
requires = {
|
|
|
|
{ 'nvim-lua/plenary.nvim' },
|
2023-04-05 07:57:14 -04:00
|
|
|
{ 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' },
|
|
|
|
{ 'xiyaowong/telescope-emoji.nvim' },
|
2022-09-19 07:47:06 -04:00
|
|
|
},
|
|
|
|
config = function()
|
2023-04-05 07:57:14 -04:00
|
|
|
require('telescope').setup({
|
|
|
|
defaults = { preview = false }
|
|
|
|
})
|
2022-09-19 07:47:06 -04:00
|
|
|
require('telescope').load_extension('fzf')
|
2023-04-05 07:57:14 -04:00
|
|
|
require('telescope').load_extension('emoji')
|
2022-09-19 07:47:06 -04:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:20:21 -04:00
|
|
|
use {
|
|
|
|
'folke/trouble.nvim',
|
|
|
|
requires = { 'nvim-tree/nvim-web-devicons' },
|
|
|
|
}
|
|
|
|
|
2022-09-19 07:47:06 -04:00
|
|
|
use { 'folke/which-key.nvim', config = function() require('keys') end }
|
|
|
|
|
|
|
|
use 'preservim/nerdtree'
|
|
|
|
|
2023-05-02 08:21:37 -04:00
|
|
|
use {
|
|
|
|
'elixir-tools/elixir-tools.nvim',
|
2024-03-06 10:43:47 -05:00
|
|
|
tag = 'stable',
|
2023-05-02 08:21:37 -04:00
|
|
|
requires = { 'nvim-lua/plenary.nvim' },
|
|
|
|
config = function()
|
2023-07-31 07:55:37 -04:00
|
|
|
local elixir = require('elixir')
|
|
|
|
local elixirls = require('elixir.elixirls')
|
|
|
|
|
|
|
|
elixir.setup({
|
2024-03-06 10:43:47 -05:00
|
|
|
credo = { enable = true },
|
2023-07-31 07:55:37 -04:00
|
|
|
elixirls = {
|
|
|
|
enable = true,
|
|
|
|
settings = elixirls.settings({
|
|
|
|
dialyzerEnabled = false,
|
|
|
|
fetchDeps = true,
|
|
|
|
enableTestLenses = true,
|
2024-03-06 10:43:47 -05:00
|
|
|
suggestSpecs = false,
|
2023-07-31 07:55:37 -04:00
|
|
|
}),
|
|
|
|
on_attach = function(client, bufnr)
|
|
|
|
vim.keymap.set({'n', 'v'}, '<leader>fp', ':ElixirFromPipe<cr>', { buffer = true, noremap = true })
|
|
|
|
vim.keymap.set({'n', 'v'}, '<leader>tp', ':ElixirToPipe<cr>', { buffer = true, noremap = true })
|
|
|
|
end
|
|
|
|
}
|
|
|
|
})
|
2023-05-02 08:21:37 -04:00
|
|
|
end
|
|
|
|
}
|
|
|
|
|
2023-06-30 10:19:04 -04:00
|
|
|
use {
|
|
|
|
'catppuccin/nvim',
|
|
|
|
as = 'catppuccin',
|
|
|
|
config = function()
|
|
|
|
vim.cmd.colorscheme 'catppuccin-frappe'
|
|
|
|
end
|
|
|
|
}
|
2022-09-19 07:47:06 -04:00
|
|
|
|
|
|
|
-- Automatically set up your configuration after cloning packer.nvim
|
|
|
|
-- Put this at the end after all plugins
|
|
|
|
if packer_bootstrap then
|
|
|
|
require('packer').sync()
|
|
|
|
end
|
|
|
|
end)
|