-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Neovim: Move config from Lua back to VimScript
- Loading branch information
Jeremy Brudvik
committed
Jan 13, 2025
1 parent
66934a5
commit da20cc4
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
set shortmess+=I " Don't show intro message | ||
set number " Enable line numbers | ||
set clipboard+=unnamedplus " Use the system clipboard | ||
set expandtab " Insert tabs instead of spaces when using the tab button | ||
set softtabstop=4 " Size of tabs -- coupled with expandtab -> number of spaces | ||
set tabstop=4 " Visual size of tab characters | ||
set shiftwidth=4 " How many columns of text are indented with >> or << (or =G) | ||
|
||
" Key mappings | ||
nnoremap <CR> :noh<CR><CR> | ||
nnoremap <S-u> <C-r> | ||
nmap <C-c> gcc | ||
vmap <C-c> gc | ||
imap <C-c> <esc>gcci |