Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/nvim/lua/helpers/

init.lua /abh/nvim/lua/helpers/init.lua
338 Views
0 Comments
-- [[ helpers funcitons and functnalitis ]] --

local luarocks = require("luarocks")

local helpers = {
{ "run-code" },

logger.lua /abh/nvim/lua/helpers/logger.lua
360 Views
0 Comments
-- [[ logger.lua ]] --

local M = {}

function M.log()
local cr, cc = unpack(vim.api.nvim_win_get_cursor(0))

vim.cmd(":
notes.lua /abh/nvim/lua/helpers/notes.lua
399 Views
0 Comments
-- [[ notes ]] --


local notes_dir = vim.fn.stdpath("data") .. "/notes/"
vim.fn.mkdir(notes_dir, "p")


local Notes = {};
rewrite.lua /abh/nvim/lua/helpers/rewrite.lua
327 Views
0 Comments
--[[ ReWrite ]]--


local M = {}

M.write_string = ""
M.write_mode = ""
M.last_writes = {}
run-code.lua /abh/nvim/lua/helpers/run-code.lua
335 Views
0 Comments
-- [[ run-code.lua ]] --

local M = {}

function M.run_code()
local filetype = vim.bo.filetype;
if filetype == "text" th
shifter.lua /abh/nvim/lua/helpers/shifter.lua
73 Views
0 Comments
-- [[ Shifter ]] --

M = {}

function M.shift_up()
local l, c = unpack(vim.api.nvim_win_get_cursor(0))
vim.cmd("norm k")
toggle-bool.lua /abh/nvim/lua/helpers/toggle-bool.lua
70 Views
0 Comments
-- [[ Toggle Bool ]] --

local M = {}

function M.toggle_bool_value(bool)
if bool == "true" then return "false" end
if b
yankbin.lua /abh/nvim/lua/helpers/yankbin.lua
383 Views
0 Comments
-- [ Yank Bin ] --

local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local previewers =