├── .editorconfig ├── .stylua.toml ├── LICENSE ├── README.md ├── lua └── nvim-paste-fix.lua └── plugin └── nvim-paste-fix.vim /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeertzjq/nvim-paste-fix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.stylua.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeertzjq/nvim-paste-fix/HEAD/.stylua.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeertzjq/nvim-paste-fix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeertzjq/nvim-paste-fix/HEAD/README.md -------------------------------------------------------------------------------- /lua/nvim-paste-fix.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeertzjq/nvim-paste-fix/HEAD/lua/nvim-paste-fix.lua -------------------------------------------------------------------------------- /plugin/nvim-paste-fix.vim: -------------------------------------------------------------------------------- 1 | lua require('nvim-paste-fix') 2 | --------------------------------------------------------------------------------