-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbda874
commit 08ee07d
Showing
10 changed files
with
467 additions
and
464 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,156 +1,156 @@ | ||
return require("packer").startup({ | ||
function(use) | ||
use("wbthomason/packer.nvim") | ||
function(use) | ||
use("wbthomason/packer.nvim") | ||
|
||
-- appearance | ||
use({ | ||
"jsstevenson/tokyonight.nvim", | ||
branch = "new-colors", | ||
}) | ||
use({ | ||
"hoob3rt/lualine.nvim", | ||
config = function() | ||
require("plugins.status_line") | ||
end, | ||
}) | ||
use({ | ||
"akinsho/nvim-bufferline.lua", | ||
config = function() | ||
require("bufferline").setup({}) | ||
end, | ||
}) | ||
use("voldikss/vim-floaterm") | ||
use({ | ||
"mechatroner/rainbow_csv", | ||
ft = { "csv", "tsv" }, | ||
}) | ||
use({ | ||
"rrethy/vim-hexokinase", | ||
run = "cd ~/.local/share/nvim/site/pack/packer/start/vim-hexokinase && make hexokinase", | ||
}) | ||
-- appearance | ||
use({ | ||
"jsstevenson/tokyonight.nvim", | ||
branch = "new-colors", | ||
}) | ||
use({ | ||
"hoob3rt/lualine.nvim", | ||
config = function() | ||
require("plugins.status_line") | ||
end, | ||
}) | ||
use({ | ||
"akinsho/nvim-bufferline.lua", | ||
config = function() | ||
require("bufferline").setup({}) | ||
end, | ||
}) | ||
use("voldikss/vim-floaterm") | ||
use({ | ||
"mechatroner/rainbow_csv", | ||
ft = { "csv", "tsv" }, | ||
}) | ||
use({ | ||
"rrethy/vim-hexokinase", | ||
run = "cd ~/.local/share/nvim/site/pack/packer/start/vim-hexokinase && make hexokinase", | ||
}) | ||
|
||
-- general | ||
use({ | ||
"b0o/mapx.nvim", | ||
config = function() | ||
require("mapx").setup({}) | ||
end, | ||
}) | ||
-- general | ||
use({ | ||
"b0o/mapx.nvim", | ||
config = function() | ||
require("mapx").setup({}) | ||
end, | ||
}) | ||
|
||
-- telescope | ||
use({ | ||
"nvim-telescope/telescope.nvim", | ||
requires = { | ||
{ "nvim-lua/plenary.nvim" }, | ||
{ | ||
"nvim-telescope/telescope-fzf-native.nvim", | ||
run = "make", | ||
}, | ||
}, | ||
config = function() | ||
require("plugins.telescope") | ||
end, | ||
}) | ||
-- telescope | ||
use({ | ||
"nvim-telescope/telescope.nvim", | ||
requires = { | ||
{ "nvim-lua/plenary.nvim" }, | ||
{ | ||
"nvim-telescope/telescope-fzf-native.nvim", | ||
run = "make", | ||
}, | ||
}, | ||
config = function() | ||
require("plugins.telescope") | ||
end, | ||
}) | ||
|
||
-- text objects & formatting | ||
-- use 'wellle/targets.vim' | ||
-- use 'michaeljsmith/vim-indent-object' | ||
use({ | ||
"Vimjas/vim-python-pep8-indent", | ||
ft = { "python" }, | ||
}) | ||
-- try https://github.com/junegunn/vim-easy-align as well? | ||
use({ | ||
"godlygeek/tabular", | ||
ft = { "tex", "markdown" }, | ||
}) | ||
use({ | ||
"numToStr/Comment.nvim", | ||
config = function() | ||
require("Comment").setup() | ||
end, | ||
}) | ||
use("tpope/vim-surround") | ||
use("jiangmiao/auto-pairs") | ||
use({ | ||
"jpalardy/vim-slime", | ||
-- ft = {'python', 'racket', 'javascript', 'javascriptreact'}, | ||
config = function() | ||
require("plugins.slime") | ||
end, | ||
}) | ||
-- text objects & formatting | ||
-- use 'wellle/targets.vim' | ||
-- use 'michaeljsmith/vim-indent-object' | ||
use({ | ||
"Vimjas/vim-python-pep8-indent", | ||
ft = { "python" }, | ||
}) | ||
-- try https://github.com/junegunn/vim-easy-align as well? | ||
use({ | ||
"godlygeek/tabular", | ||
ft = { "tex", "markdown" }, | ||
}) | ||
use({ | ||
"numToStr/Comment.nvim", | ||
config = function() | ||
require("Comment").setup() | ||
end, | ||
}) | ||
use("tpope/vim-surround") | ||
use("jiangmiao/auto-pairs") | ||
use({ | ||
"jpalardy/vim-slime", | ||
-- ft = {'python', 'racket', 'javascript', 'javascriptreact'}, | ||
config = function() | ||
require("plugins.slime") | ||
end, | ||
}) | ||
|
||
-- treesitter stuff | ||
use({ | ||
"nvim-treesitter/nvim-treesitter", | ||
}) | ||
use({ | ||
"RRethy/nvim-treesitter-endwise", | ||
}) | ||
use({ | ||
"windwp/nvim-ts-autotag", | ||
}) | ||
use({ | ||
"nvim-treesitter/playground", | ||
}) | ||
-- treesitter stuff | ||
use({ | ||
"nvim-treesitter/nvim-treesitter", | ||
}) | ||
use({ | ||
"RRethy/nvim-treesitter-endwise", | ||
}) | ||
use({ | ||
"windwp/nvim-ts-autotag", | ||
}) | ||
use({ | ||
"nvim-treesitter/playground", | ||
}) | ||
|
||
-- LSP things | ||
use({ | ||
"neovim/nvim-lspconfig", | ||
requires = { | ||
{ "hrsh7th/cmp-nvim-lsp" }, | ||
{ "hrsh7th/cmp-buffer" }, | ||
{ "hrsh7th/nvim-cmp" }, | ||
{ "hrsh7th/vim-vsnip" }, | ||
{ "hrsh7th/vim-vsnip-integ" }, | ||
{ "williamboman/mason.nvim" }, | ||
{ "williamboman/mason-lspconfig.nvim" }, | ||
}, | ||
}) | ||
-- LSP things | ||
use({ | ||
"neovim/nvim-lspconfig", | ||
requires = { | ||
{ "hrsh7th/cmp-nvim-lsp" }, | ||
{ "hrsh7th/cmp-buffer" }, | ||
{ "hrsh7th/nvim-cmp" }, | ||
{ "hrsh7th/vim-vsnip" }, | ||
{ "hrsh7th/vim-vsnip-integ" }, | ||
{ "williamboman/mason.nvim" }, | ||
{ "williamboman/mason-lspconfig.nvim" }, | ||
}, | ||
}) | ||
|
||
-- git | ||
use("itchyny/vim-gitbranch") -- until I feel better about vim-fugitive | ||
use({ | ||
"rhysd/conflict-marker.vim", | ||
config = function() | ||
require("plugins.conflict_marker") | ||
end, | ||
}) | ||
use({ | ||
"lewis6991/gitsigns.nvim", | ||
config = function() | ||
require("gitsigns").setup() | ||
end, | ||
}) | ||
-- git | ||
use("itchyny/vim-gitbranch") -- until I feel better about vim-fugitive | ||
use({ | ||
"rhysd/conflict-marker.vim", | ||
config = function() | ||
require("plugins.conflict_marker") | ||
end, | ||
}) | ||
use({ | ||
"lewis6991/gitsigns.nvim", | ||
config = function() | ||
require("gitsigns").setup() | ||
end, | ||
}) | ||
|
||
-- language-specific | ||
use({ | ||
"nicwest/vim-http", | ||
ft = { "http" }, | ||
}) | ||
use({ | ||
"wlangstroth/vim-racket", | ||
ft = { "racket" }, | ||
}) | ||
use({ | ||
"rust-lang/rust.vim", | ||
ft = { "rust" }, | ||
}) | ||
use({ | ||
"lervag/vimtex", | ||
ft = { "tex" }, | ||
}) | ||
use({ | ||
"NTBBloodbath/rest.nvim", | ||
requires = { "nvim-lua/plenary.nvim" }, | ||
config = function() | ||
require("plugins.nvim-rest") | ||
end, | ||
}) | ||
end, | ||
config = { | ||
display = { | ||
open_fn = require("packer.util").float, | ||
}, | ||
-- language-specific | ||
use({ | ||
"nicwest/vim-http", | ||
ft = { "http" }, | ||
}) | ||
use({ | ||
"wlangstroth/vim-racket", | ||
ft = { "racket" }, | ||
}) | ||
use({ | ||
"rust-lang/rust.vim", | ||
ft = { "rust" }, | ||
}) | ||
use({ | ||
"lervag/vimtex", | ||
ft = { "tex" }, | ||
}) | ||
use({ | ||
"NTBBloodbath/rest.nvim", | ||
requires = { "nvim-lua/plenary.nvim" }, | ||
config = function() | ||
require("plugins.nvim-rest") | ||
end, | ||
}) | ||
end, | ||
config = { | ||
display = { | ||
open_fn = require("packer.util").float, | ||
}, | ||
}, | ||
}) |
Oops, something went wrong.