Skip to content

Instantly share code, notes, and snippets.

View baneshispace's full-sized avatar

Shahab Baneshi baneshispace

View GitHub Profile
@baneshispace
baneshispace / ranger-cheatsheet.md
Created October 4, 2024 18:54 — forked from heroheman/ranger-cheatsheet.md
Ranger Cheatsheet

Ranger Cheatsheet

General

Shortcut Description
ranger Start Ranger
Q Quit Ranger
R Reload current directory
? Ranger Manpages / Shortcuts
@joseoct
joseoct / config.lua
Last active March 8, 2023 08:27
my LunarVim config
-- general
lvim.log.level = "warn"
lvim.format_on_save = true
lvim.colorscheme = "omni"
lvim.builtin.cmp.confirm_opts.select = true
lvim.leader = "space"
lvim.keys.normal_mode["<S-l>"] = ":BufferLineCycleNext<CR>"
lvim.keys.normal_mode["<S-h>"] = ":BufferLineCyclePrev<CR>"
lvim.builtin.alpha.active = true
lvim.builtin.alpha.mode = "dashboard"
@HugoOliveiraSoares
HugoOliveiraSoares / JavaRun.vim
Last active March 8, 2023 08:37
LunarVim config
" JavaRun.vim
" Version 0.2
" Kendrew Lau
"
" Script to save, compile, and run the Java program in current buffer.
" The saving and compilation are only done if necessary.
" Some abbreviations for Java programming are added, e.g.
" psvm for "public static void main(String[] args) { }"
" cl for class
" fi for final