A neovim plugin that shows the code owner of a specific file by digging through GitHub CODEOWNERS file of a repository
- Make lualine setup configurable
- Add support for other statusline plugins. i.e lightline, airline, powerline
- Add functionality of matching wildcards in CODEOWNERS file
- Add functionality of listing unowned files comparing to .gitignore file
- [ ]
Add the following to your init.vim
or init.lua
file
Plug 'amilsil/codewho'
use 'amilsil/codewho'
https://github.com/nvim-lualine/lualine. 566D nvim
Add the following configuration to your init.lua
file
require('lualine').setup {
...,
sections = {
lualine_z = { 'location', "require'codewho'.codewho()" }
},
...
}