nix-config/vim/.config/nvim/init.vim

17 lines
496 B
VimL
Raw Normal View History

2018-02-28 02:31:44 +01:00
" New Start: A modern Arch workflow built with an emphasis on functionality.
" Copyright (C) 2017-2018 Donovan Glover
set runtimepath^=~/.vim runtimepath+=~/.vim/after
2018-09-10 21:09:00 +02:00
2018-02-28 02:31:44 +01:00
let &packpath = &runtimepath
2018-09-10 21:09:00 +02:00
" Enable global clipboard support for all vim commands in neovim
" NOTE: It may be better to just add a keybind for "+(y), or just
" use that instead.
set clipboard=unnamedplus
" Change cursor back to blink after exiting neovim
autocmd VimLeave * set guicursor=a:block-blinkon1
2018-02-28 02:31:44 +01:00
source ~/.vimrc