vim: clean up plugins dependencies
This commit is contained in:
parent
7a293c6024
commit
c9b680e93a
7 changed files with 17 additions and 8 deletions
|
@ -1,5 +0,0 @@
|
|||
return {
|
||||
{ 'nvim-lua/plenary.nvim', lazy = true },
|
||||
{ 'milisims/nvim-luaref', lazy = true },
|
||||
}
|
||||
|
|
@ -3,6 +3,10 @@ local bright = '#ffffff' -- alternative: '#f9f5d7'
|
|||
|
||||
local M = { 'nvim-lualine/lualine.nvim' }
|
||||
|
||||
M.dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
}
|
||||
|
||||
M.config = function()
|
||||
local window = require 'fschauen.window'
|
||||
local colored_if_focused = require('fschauen.lualine').colored_if_focused
|
||||
|
|
6
config/nvim/lua/fschauen/plugins/luaref.lua
Normal file
6
config/nvim/lua/fschauen/plugins/luaref.lua
Normal file
|
@ -0,0 +1,6 @@
|
|||
local M = { 'milisims/nvim-luaref' }
|
||||
|
||||
M.lazy = true
|
||||
|
||||
return M
|
||||
|
|
@ -1,5 +1,9 @@
|
|||
local M = { 'NeogitOrg/neogit' }
|
||||
|
||||
M.dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
}
|
||||
|
||||
M.keys = require('fschauen.keymap').neogit
|
||||
|
||||
M.opts = {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
local M = { 'nvim-tree/nvim-tree.lua' }
|
||||
|
||||
M.dependencies = {
|
||||
'nvim-tree/nvim-web-devicons'
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
}
|
||||
|
||||
M.keys = require('fschauen.keymap').nvim_tree
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
local M = { 'folke/todo-comments.nvim' }
|
||||
|
||||
M.dependencies = {
|
||||
'nvim-lua/plenary.nvim'
|
||||
'nvim-lua/plenary.nvim',
|
||||
}
|
||||
|
||||
M.keys = require('fschauen.keymap').todo_comments
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
local M = { 'folke/trouble.nvim' }
|
||||
|
||||
M.dependencies = {
|
||||
'nvim-tree/nvim-web-devicons'
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
}
|
||||
|
||||
M.keys = require('fschauen.keymap').trouble
|
||||
|
|
Loading…
Add table
Reference in a new issue