code-examples/scripts/vim/vimrc

14 lines
246 B
VimL
Raw Normal View History

2025-01-31 22:10:34 +00:00
filetype plugin indent on
filetype indent on
set autoindent
set expandtab tabstop=2 shiftwidth=2 softtabstop=2 smarttab
set number
2025-01-31 21:51:27 +00:00
2025-01-31 22:10:34 +00:00
source ~/.vim/bundles/vim-plug/plug.vim
2025-01-31 22:10:34 +00:00
2025-01-31 21:51:27 +00:00
call plug#begin()
Plug 'JuliaEditorSupport/julia-vim'
call plug#end()