-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc
More file actions
23 lines (19 loc) · 1004 Bytes
/
.vimrc
File metadata and controls
23 lines (19 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
" #########################################################################
" # ____ __ ____ _______ _______. __ ___________ ____ #
" # \ \ / \ / / | ____| / || | | ____\ \ / / #
" # \ \/ \/ / | |__ | (----`| | | |__ \ \/ / #
" # \ / | __| \ \ | | | __| \_ _/ #
" # \ /\ / | |____.----) | | `----.| |____ | | #
" # \__/ \__/ |_______|_______/ |_______||_______| |__| #
" # VIM Setup: used only in same cases (replaced by init.lua) #
" #########################################################################
filetype off
source $HOME/.config/nvim/options.vim
source $HOME/.config/nvim/mappings.vim
" === builtin highlight yanked content === {{{
:augroup textyankpost
autocmd!
autocmd au TextYankPost * lua vim.highlight.on_yank {on_visual = false}
:augroup END
" }}}
source $HOME/.config/nvim/plug-config/omnisharp.vim