File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11local is_vscode = vim .g .vscode
2+
3+ -- mini.icons (icon provider; mocks nvim-web-devicons so filetree.lua/statuscolumn.lua
4+ -- keep working against the devicons API without changes)
5+ local mini_icons_ok , mini_icons = pcall (require , " mini.icons" )
6+ if mini_icons_ok then
7+ mini_icons .setup ()
8+ mini_icons .mock_nvim_web_devicons ()
9+ end
10+
11+ -- mini.pairs (auto-close brackets/quotes; complements the <CR> auto-indent
12+ -- keymap in options.lua which handles the reactive side of bracket editing)
13+ local mini_pairs_ok , mini_pairs = pcall (require , " mini.pairs" )
14+ if mini_pairs_ok and not is_vscode then
15+ mini_pairs .setup ()
16+ end
17+
218-- fzf
319-- git clone --depth 1 https://github.com/ibhagwan/fzf-lua.git ~/.config/nvim/pack/plugins/start/fzf-lua
420local ok , fzf = pcall (require , " fzf-lua" )
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ local package_list = {
4040 { name = " noice.nvim" , src = " https://github.com/folke/noice.nvim.git" },
4141 { name = " quicker.nvim" , src = " https://github.com/stevearc/quicker.nvim.git" },
4242 { name = " nui.nvim" , src = " https://github.com/MunifTanjim/nui.nvim.git" },
43- { name = " nvim-web-devicons " , src = " https://github.com/nvim-tree/ nvim-web-devicons .git" }
43+ { name = " mini. nvim" , src = " https://github.com/echasnovski/mini. nvim.git" }
4444}
4545local vim_pack_ok , _ = pcall (require , " vim.pack" )
4646local function sync_packages ()
Original file line number Diff line number Diff line change 3838 "src" : " https://tpope.io/vim/fugitive.git"
3939 },
4040 "fzf-lua" : {
41- "rev" : " 774150bc05f774af1df614f55d156b3318c6decd " ,
41+ "rev" : " ed4059deb9237f7f4cc8832ffef69779ffe2e265 " ,
4242 "src" : " https://github.com/ibhagwan/fzf-lua.git"
4343 },
4444 "gitsigns.nvim" : {
4949 "rev" : " 943779f7cdb0acee203985ad531fb53ff95d9c8e" ,
5050 "src" : " https://github.com/justinmk/guh.nvim"
5151 },
52+ "mini.nvim" : {
53+ "rev" : " 928971c3cfe99ddf29659acc31214cfa836fabe4" ,
54+ "src" : " https://github.com/echasnovski/mini.nvim.git"
55+ },
5256 "noice.nvim" : {
5357 "rev" : " 7bfd942445fb63089b59f97ca487d605e715f155" ,
5458 "src" : " https://github.com/folke/noice.nvim.git"
7882 "src" : " https://github.com/nvim-tree/nvim-web-devicons.git"
7983 },
8084 "obsidian.nvim" : {
81- "rev" : " 1052c0c8359c550d5379296f896a778284dc5a78 " ,
85+ "rev" : " 7687c7e62c3e12617d9eea6401e9e1f190e2ccab " ,
8286 "src" : " https://github.com/obsidian-nvim/obsidian.nvim.git"
8387 },
8488 "plenary.nvim" : {
You can’t perform that action at this time.
0 commit comments