Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/nvim/lua/

colorschemes.lua /abh/nvim/lua/colorschemes.lua
282 Views
0 Comments
--[[ Colorschemes ]]--

return {
{
{ "vim/colorschemes"},
{ "jnurmine/Zenburn" },
{ "altercation/vim
helpers /abh/nvim/lua/helpers/
8 Items
  • init.lua
  • logger.lua
  • notes.lua
  • rewrite.lua
  • run-code.lua
  • shifter.lua
  • toggle-bool.lua
  • yankbin.lua
  • luarocks.lua /abh/nvim/lua/luarocks.lua
    392 Views
    0 Comments
    -- [ LuaRock Managment ] --

    local M = {}

    M.list_cache = nil
    M.use_cache = true

    function M.list()
    mappings.lua /abh/nvim/lua/mappings.lua
    246 Views
    0 Comments
    --[[ Keymappings ]]--

    local ntst = { noremap=true, silent=true }

    -- Leader keys
    vim.g.mapleader = " "
    vim.g.maplocalleader = "
    options.lua /abh/nvim/lua/options.lua
    344 Views
    0 Comments
    -- Options


    -- Block Cursor
    vim.opt.guicursor = ""

    -- Line numbers
    vim.opt.number = true
    plugins /abh/nvim/lua/plugins/
    11 Items
  • aneo.lua
  • blink.lua
  • fzf.lua
  • indent_line.lua
  • indentmini.lua
  • leetcode.lua
  • lsp_config.lua
  • nerdtree.lua
  • scheme-switcher.lua /abh/nvim/lua/scheme-switcher.lua
    348 Views
    0 Comments
    --[[ color scheme switcher ]]--

    local set_colorscheme_file_path = vim.fn.stdpath("data") .. "/.set_colorscheme"

    local M = {};