abh - HTMLify profile

abh's Profile Picture

abh

501 Files

102263 Views

Latest files of /abh/nvim/lua/helpers

run-code.lua abh/nvim/lua/helpers/run-code.lua
140 Views
0 Comments
-- [[ run-code.lua ]] --

local M = {}

function M.run_code()
local filetype = vim.bo.filetype;
if filetype == "text" then
vim.cmd("terminal cat %")
init.lua abh/nvim/lua/helpers/init.lua
144 Views
0 Comments
-- [[ helpers funcitons and functnalitis ]] --

local luarocks = require("luarocks")

local helpers = {
{ "run-code" },
{ "logger" },
{ "yankbin" },
logger.lua abh/nvim/lua/helpers/logger.lua
156 Views
0 Comments
-- [[ logger.lua ]] --

local M = {}

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

vim.cmd(":normal! yy")
yankbin.lua abh/nvim/lua/helpers/yankbin.lua
176 Views
0 Comments
-- [ Yank Bin ] --

local pickers = require("telescope.pickers")
local finders = require("telescope.finders")
local previewers = require("telescope.previewers")
local actions = require("telescope.actions")
local action_state = require("telescope.actions.state")
local t_config = require("telescope.config").values
notes.lua abh/nvim/lua/helpers/notes.lua
163 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
99 Views
0 Comments
--[[ ReWrite ]]--


local M = {}

M.write_string = ""
M.write_mode = ""
M.last_writes = {}