Vim scripts.

master
Tomasz Polgrabia 2025-01-31 22:51:27 +01:00
parent 9f7d577915
commit bbc653f83a
4 changed files with 14 additions and 10 deletions

3
.gitmodules vendored Normal file
View File

@ -0,0 +1,3 @@
[submodule "scripts/vim/bundles/julia-vim"]
path = scripts/vim/bundles/julia-vim
url = https://github.com/JuliaEditorSupport/julia-vim.git

View File

@ -1,10 +0,0 @@
set number
set expandtab
set tabstop=2
set softtabstop=2
set shiftwidth=2
" execute pathogen#infect()
syntax on
filetype plugin indent on

0
scripts/vim/setup.sh Normal file
View File

11
scripts/vim/vimrc Normal file
View File

@ -0,0 +1,11 @@
:filetype plugin indent on
:filetype indent on
:set autoindent
:set expandtab tabstop=2 shiftwidth=2 softtabstop=2 smarttab
:set number
call plug#begin()
Plug 'JuliaEditorSupport/julia-vim'
call plug#end()