Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ktor/vimfiles
my vimfiles
https://github.com/ktor/vimfiles
vim vim-configuration vimfiles vimrc vimrc-configuration
Last synced: about 2 months ago
JSON representation
my vimfiles
- Host: GitHub
- URL: https://github.com/ktor/vimfiles
- Owner: ktor
- Created: 2014-12-23T19:04:19.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2021-04-30T14:07:53.000Z (over 3 years ago)
- Last Synced: 2024-04-14T00:53:16.423Z (9 months ago)
- Topics: vim, vim-configuration, vimfiles, vimrc, vimrc-configuration
- Language: Vim script
- Size: 2.46 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cheatsheet
<leader> is ,## Command mode
Shortcut/command | Description
--- | ---
Ctrl-J | Jump to next command
Ctrl-K | Jump to previous command
e ~+Ctrl+K | Jump to previous command that started with e ~
Ctrl-F | Edit command
:Goyo | Distraction free writing
:setlocal spell spelllang=sk_sk | Set spell language to Slovak## Normal mode
Shortcut/command | Description
--- | ---
]s/[s | find next / previous spelling error
z= | suggest correctly spelled words for the word under/after the cursor
<leader>be | show buffer explorer
<leader>y | yank to windows clipboard
<leader>p | paste from windows clipboard
<leader>v | paste from windows clipboard and fix indentation
<leader>bx | set filetype to xml and beautify
<leader>bj | set filetype to json and beautify
<leader>bh | set filetype to html and beautify
<leader>r | show/hide nerd tree
<leader>f | show current file in nerd tree
<leader>t | show/hide tagbar
<leader>em | elm make
<leader>ef | elm format
<leader>ed | elm docs
<leader>cs | convert slashes to backslashes
<leader>cl | convert backslashes to slashes
<leader>a | autoformat code
Ctrl-Up | increase font size
Ctrl-Down | descrease font size### Movement
Shortcut/command | Description
--- | ---
<leader>o | new line below
<leader>O | new line above
<leader>m | next tab
<leader>n | previous tab
<leader>cp | previous error
<leader>cn | next error