abh - HTMLify profile

abh's Profile Picture

abh

501 Files

101954 Views

Latest files of /abh/nvim/lua

plugins/ abh/nvim/lua/plugins/
10 Items
  • blink.lua
  • treesitter.lua
  • nerdtree.lua
  • leetcode.lua
  • lsp_config.lua
  • fzf.lua
  • indent_line.lua
  • telescope.lua
  • helpers/ abh/nvim/lua/helpers/
    6 Items
  • run-code.lua
  • init.lua
  • logger.lua
  • yankbin.lua
  • notes.lua
  • rewrite.lua
  • options.lua abh/nvim/lua/options.lua
    135 Views
    0 Comments
    -- Options


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

    -- Line numbers
    vim.opt.number = true
    mappings.lua abh/nvim/lua/mappings.lua
    128 Views
    0 Comments
    --[[ Keymappings ]]--

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

    -- Leader keys
    vim.g.mapleader = " "
    vim.g.maplocalleader = "\\"

    luarocks.lua abh/nvim/lua/luarocks.lua
    162 Views
    0 Comments
    -- [ LuaRock Managment ] --

    local M = {}

    M.list_cache = nil
    M.use_cache = true

    function M.list()
    scheme-switcher.lua abh/nvim/lua/scheme-switcher.lua
    139 Views
    0 Comments
    --[[ color scheme switcher ]]--

    local set_colorscheme_file_path = os.getenv("HOME") .. "/.local/share/nvim/.set_colorscheme"

    local M = {};

    function M.get_current_colorscheme()
    local file = io.open(set_colorscheme_file_path, "r")
    colorschemes.lua abh/nvim/lua/colorschemes.lua
    110 Views
    0 Comments
    --[[ Colorschemes ]]--

    return {
    {
    { "vim/colorschemes"},
    { "jnurmine/Zenburn" },
    { "altercation/vim-colors-solarized" },
    { "danilo-augusto/vim-afterglow" },