| Shortcut | Description |
|---|---|
ranger |
Start Ranger |
Q |
Quit Ranger |
R |
Reload current directory |
? |
Ranger Manpages / Shortcuts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " 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 |