mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-12 19:27:18 +00:00
Don't use opt=true where it doesn't make sense
This commit is contained in:
parent
8b1d872d37
commit
2418031d0c
|
@ -47,31 +47,31 @@ local plugin_list = {
|
||||||
"vim-airline/vim-airline", -- Status line
|
"vim-airline/vim-airline", -- Status line
|
||||||
config = get_plugin_file("airline.lua"),
|
config = get_plugin_file("airline.lua"),
|
||||||
requires = {
|
requires = {
|
||||||
{ "vim-airline/vim-airline-themes", opt = true },
|
{ "vim-airline/vim-airline-themes" },
|
||||||
{ "ryanoasis/vim-devicons", opt = true },
|
{ "ryanoasis/vim-devicons" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"preservim/nerdtree", -- File tree
|
"preservim/nerdtree", -- File tree
|
||||||
config = get_plugin_file("nerdtree.lua"),
|
config = get_plugin_file("nerdtree.lua"),
|
||||||
requires = {
|
requires = {
|
||||||
{ "Xuyuanp/nerdtree-git-plugin", opt = true },
|
{ "Xuyuanp/nerdtree-git-plugin" },
|
||||||
{ "tiagofumo/vim-nerdtree-syntax-highlight", opt = true },
|
{ "tiagofumo/vim-nerdtree-syntax-highlight" },
|
||||||
{ "ryanoasis/vim-devicons", opt = true },
|
{ "ryanoasis/vim-devicons" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"mfussenegger/nvim-dap", -- Support for the debugging within vim
|
"mfussenegger/nvim-dap", -- Support for the debugging within vim
|
||||||
config = get_plugin_file("nvim-dap.lua"),
|
config = get_plugin_file("nvim-dap.lua"),
|
||||||
requires = { "mfussenegger/nvim-dap-python", opt = true },
|
requires = { "mfussenegger/nvim-dap-python" },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"junegunn/fzf.vim", -- Fuzzy finder (TODO: consider replacing with telescope)
|
"junegunn/fzf.vim", -- Fuzzy finder (TODO: consider replacing with telescope)
|
||||||
run = function() fn['fzf#install']() end,
|
run = function() fn['fzf#install']() end,
|
||||||
config = get_plugin_file("fzf.lua"),
|
config = get_plugin_file("fzf.lua"),
|
||||||
requires = {
|
requires = {
|
||||||
{ "junegunn/fzf", opt = false },
|
{ "junegunn/fzf" },
|
||||||
{ "stsewd/fzf-checkout.vim", opt = true },
|
{ "stsewd/fzf-checkout.vim" },
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue