Log in Register Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

abh's Profile Picture

abh

523 Files

133394 Views

Latest files of /abh/nvim/lua

plugins/ abh/nvim/lua/plugins/
11 Items
  • blink.lua
  • treesitter.lua
  • nerdtree.lua
  • leetcode.lua
  • lsp_config.lua
  • fzf.lua
  • indent_line.lua
  • telescope.lua
  • helpers/ abh/nvim/lua/helpers/
    8 Items
  • run-code.lua
  • init.lua
  • logger.lua
  • yankbin.lua
  • notes.lua
  • rewrite.lua
  • shifter.lua
  • toggle-bool.lua
  • options.lua abh/nvim/lua/options.lua
    220 Views
    0 Comments
    -- Options


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

    -- Line numbers
    vim.opt.number = true
    mappings.lua abh/nvim/lua/mappings.lua
    175 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
    258 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
    223 Views
    0 Comments
    --[[ color scheme switcher ]]--

    local set_colorscheme_file_path = vim.fn.stdpath("data") .. "/.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
    177 Views
    0 Comments
    --[[ Colorschemes ]]--

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