vim:vimrc.d:*: Use " instead of # in header lines
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
" Plugins ######################################################################
|
" Plugins """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Load all plugins in pack/*/start
|
" Load all plugins in pack/*/start
|
||||||
packloadall
|
packloadall
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" Settings #####################################################################
|
" Settings """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" hybrid linenumbers
|
" hybrid linenumbers
|
||||||
set number relativenumber
|
set number relativenumber
|
||||||
" no timeout when exiting insert-mode
|
" no timeout when exiting insert-mode
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" Keybindings ##################################################################
|
" Keybindings """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Stop highlighting search result when pressing Return
|
" Stop highlighting search result when pressing Return
|
||||||
nnoremap <silent> <CR> :nohlsearch<CR><CR>
|
nnoremap <silent> <CR> :nohlsearch<CR><CR>
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" Aesthetics ###################################################################
|
" Aesthetics """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Use 24-bit (true-color) mode
|
" Use 24-bit (true-color) mode
|
||||||
if (has('termguicolors'))
|
if (has('termguicolors'))
|
||||||
set termguicolors
|
set termguicolors
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
" Commands #####################################################################
|
" Commands """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
command! DiffOrig vert new | set buftype=nofile | read ++edit # | 0d_ | diffthis
|
command! DiffOrig vert new | set buftype=nofile | read ++edit # | 0d_ | diffthis
|
||||||
\ | wincmd p | diffthis
|
\ | wincmd p | diffthis
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" Functions ####################################################################
|
" Functions """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Toggle spell language between German and English
|
" Toggle spell language between German and English
|
||||||
function! CycleSpellLang()
|
function! CycleSpellLang()
|
||||||
if (&spelllang == 'en')
|
if (&spelllang == 'en')
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
" Autocommands #################################################################
|
" Autocommands """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Highlight trailing whitespaces
|
" Highlight trailing whitespaces
|
||||||
" (https://vim.fandom.com/wiki/Highlight_unwanted_spaces)
|
" (https://vim.fandom.com/wiki/Highlight_unwanted_spaces)
|
||||||
" Create highlight group
|
" Create highlight group
|
||||||
|
|||||||
Reference in New Issue
Block a user