├── .editorconfig ├── .github └── workflows │ ├── linter.yml │ └── tests.yml ├── .luacheckrc ├── README.md ├── lua └── overfly.lua ├── plugin └── overfly.lua └── tests └── minimal.vim /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/.luacheckrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/README.md -------------------------------------------------------------------------------- /lua/overfly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/lua/overfly.lua -------------------------------------------------------------------------------- /plugin/overfly.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/plugin/overfly.lua -------------------------------------------------------------------------------- /tests/minimal.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfussenegger/nvim-overfly/HEAD/tests/minimal.vim --------------------------------------------------------------------------------