-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc.symlink
executable file
·47 lines (44 loc) · 1.73 KB
/
.vimrc.symlink
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
" Moved most of this to neovim config
"-----------------------------------------------------------------------------
" * Base Setup
" * LEADER REMAPPING
" * Install Plugins
" * Navigate through windows and buffers with the leader
" * Split Preferences
" * VimTest Plugin Settings
" * Convenience
" " Delete trailing white space on save, useful for some filetypes ;)
" " When saving files, delete trailing whitespace
" * Autocommands based on filetype
" * ALE variables
" * Fix constant spelling mistakes
" * Fern
" * Codeium settings
" * Vimux settings
" * FZF settings
" * Local config
" * XML settings
" * Enable Italics in Comments
" * Enable Italics in Comments
" highlight Comment cterm=italic
"-----------------------------------------------------------------------------
" "-----------------------------------------------------------------------------
" " Snipmate variables
" "-----------------------------------------------------------------------------
" let g:snipMate = { 'snippet_version' : 1 }
" let g:snips_author = 'Joseph Rhoads'
" let g:snips_email = '[email protected]'
" let g:snips_github = 'jrhoads'
"-----------------------------------------------------------------------------
"-----------------------------------------------------------------------------
"-----------------------------------------------------------------------------
"-----------------------------------------------------------------------------
" "Enable moving by visible lines
" nnoremap <Leader>vv :nnoremap j gj<CR>:nnoremap k gk<CR>
" nnoremap <Leader>vx :nunmap j<CR>:nunmap k<CR>
"set t_ZH=^[[3m
"set t_ZR=^[[23m
"-----------------------------------------------------------------------------
if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif