vim:vimrc.d:*: Use " instead of # in header lines

This commit is contained in:
2021-07-13 16:52:42 +02:00
parent 0dfff846c2
commit 8c37dc2316
7 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
" Plugins ###################################################################### " Plugins """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Load all plugins in pack/*/start " Load all plugins in pack/*/start
packloadall packloadall

View File

@@ -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

View File

@@ -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>

View File

@@ -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

View File

@@ -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

View File

@@ -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')

View File

@@ -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