Compare commits

...

3 Commits

Author SHA1 Message Date
Tomasz Polgrabia 4b6f67f6dd Some small changes. 2025-01-31 23:16:59 +01:00
Tomasz Polgrabia 0bc2e27bbd Added vim-plug bundle. 2025-01-31 23:03:26 +01:00
Tomasz Polgrabia bbc653f83a Vim scripts. 2025-01-31 22:52:47 +01:00
7 changed files with 20 additions and 10 deletions

3
.gitmodules vendored Normal file
View File

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

1
scripts/vim/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
plugged

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

View File

@ -0,0 +1 @@
Subproject commit d80f495fabff8446972b8695ba251ca636a047b0

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

@ -0,0 +1,2 @@
#!/bin/sh
ln -d -s $(readlink -f .) ~/.vim

13
scripts/vim/vimrc Normal file
View File

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