summaryrefslogtreecommitdiff
path: root/general/functions.vim
diff options
context:
space:
mode:
Diffstat (limited to 'general/functions.vim')
-rw-r--r--general/functions.vim15
1 files changed, 0 insertions, 15 deletions
diff --git a/general/functions.vim b/general/functions.vim
deleted file mode 100644
index 9f62d227..00000000
--- a/general/functions.vim
+++ /dev/null
@@ -1,15 +0,0 @@
-" Random Useful Functions
-
-" Turn spellcheck on for markdown files
-augroup auto_spellcheck
- autocmd BufNewFile,BufRead *.md setlocal spell
-augroup END
-
-nnoremap <f10> :echo "hi<" . synIDattr(synID(line("."),col("."),1),"name") . '> trans<'
-\ . synIDattr(synID(line("."),col("."),0),"name") . "> lo<"
-\ . synIDattr(synIDtrans(synID(line("."),col("."),1)),"name") . ">"<cr>
-
-augroup highlight_yank
- autocmd!
- au TextYankPost * silent! lua vim.highlight.on_yank { higroup='IncSearch', timeout=200 }
-augroup END