🧋 a tiny plugin for smoother movement keybinds
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

meta: add lua env files

robin 8c710b7b 49e05b2b

+23
+7
.emmyrc.json
··· 1 + { 2 + "diagnostics": { 3 + "disable": [ 4 + "unnecessary-if" 5 + ] 6 + } 7 + }
+8
.luarc.json
··· 1 + { 2 + "runtime.version": "LuaJIT", 3 + "workspace.library": [ 4 + "${3rd}/luv/library", 5 + "$VIMRUNTIME/lua" 6 + ], 7 + "workspace.checkThirdParty": false 8 + }
+8
.nvim.lua
··· 1 + R = function(m, ...) 2 + require("plenary.reload").reload_module(m, ...) 3 + return require(m) 4 + end 5 + 6 + vim.opt.rtp:prepend(".") 7 + 8 + vim.cmd([[ runtime plugin/smoothie.lua ]])