Move to Chezmoi
This commit is contained in:
parent
f216c4ff2c
commit
e3498e73b5
59 changed files with 499 additions and 2240 deletions
69
chezmoi/private_dot_config/nvim/lua/plugins/init.lua
Normal file
69
chezmoi/private_dot_config/nvim/lua/plugins/init.lua
Normal file
|
@ -0,0 +1,69 @@
|
|||
local fn = vim.fn
|
||||
|
||||
local install_path = fn.stdpath('data') .. '/site/pack/paqs/start/paq-nvim'
|
||||
|
||||
if fn.empty(fn.glob(install_path)) > 0 then
|
||||
fn.system({'git', 'clone', '--depth=1', 'https://github.com/savq/paq-nvim.git', install_path})
|
||||
end
|
||||
|
||||
require "paq" {
|
||||
"savq/paq-nvim"; -- let Paq manage itself
|
||||
|
||||
"morhetz/gruvbox"; -- gruvbox theme
|
||||
|
||||
"kyazdani42/nvim-web-devicons"; -- per the name, fancy icons with a Nerd Font patched font
|
||||
|
||||
"lewis6991/gitsigns.nvim"; -- git gutter
|
||||
"nvim-lua/plenary.nvim"; -- dependency of lewis6991/gitsigns.nvim, nvim-telescope/telescope.nvim
|
||||
|
||||
"nvim-telescope/telescope.nvim"; -- nice searching
|
||||
{"nvim-telescope/telescope-fzf-native.nvim", run="zsh -c make"}; -- enable fzf searching for telescope
|
||||
|
||||
|
||||
"phaazon/hop.nvim"; -- easymotion navigation
|
||||
|
||||
"beauwilliams/statusline.lua"; -- statusline
|
||||
"akinsho/bufferline.nvim"; -- bufferline
|
||||
|
||||
"echasnovski/mini.nvim"; -- bunch of good small plugins: whitespace, buffer layout, commenting, surround, etc
|
||||
|
||||
"tpope/vim-fugitive"; -- __the__ git plugin
|
||||
|
||||
{"nvim-treesitter/nvim-treesitter", run=TSUpdate}; -- nice and quick syntax tree
|
||||
|
||||
"lukas-reineke/indent-blankline.nvim"; -- pretty visualization of line indents
|
||||
|
||||
"kosayoda/nvim-lightbulb"; -- shows a light bulb like vs code for code actions
|
||||
"nvim-lua/lsp-status.nvim"; -- nice statusline components for LSP servers
|
||||
|
||||
"tpope/vim-sleuth"; -- automatic tab/spaces detection
|
||||
|
||||
"rhysd/vim-grammarous"; -- grammar checking
|
||||
|
||||
-- LSP Server
|
||||
"neovim/nvim-lspconfig";
|
||||
"williamboman/nvim-lsp-installer";
|
||||
"jose-elias-alvarez/null-ls.nvim";
|
||||
"nanotee/nvim-lsp-basics";
|
||||
|
||||
-- autocomplete with nvim-cmp
|
||||
"hrsh7th/cmp-nvim-lsp";
|
||||
"hrsh7th/cmp-buffer";
|
||||
"hrsh7th/cmp-path";
|
||||
"hrsh7th/cmp-cmdline";
|
||||
"hrsh7th/nvim-cmp";
|
||||
"L3MON4D3/LuaSnip";
|
||||
"saadparwaiz1/cmp_luasnip";
|
||||
}
|
||||
|
||||
require("plugins.config.bufferline")
|
||||
require("plugins.config.cmp")
|
||||
require("plugins.config.gitsigns")
|
||||
require("plugins.config.hop")
|
||||
require("plugins.config.indentblankline")
|
||||
require("plugins.config.lightbulb")
|
||||
require("plugins.config.lspinstall")
|
||||
require("plugins.config.mini")
|
||||
require("plugins.config.statusline")
|
||||
require("plugins.config.telescope")
|
||||
require("plugins.config.treesitter")
|
Loading…
Add table
Add a link
Reference in a new issue