Mercurial > index.cgi > dotfiles
annotate .vimrc @ 222:27bc245f4194
Keep yourself alive
author | Steve Huston <huston@astro.princeton.edu> |
---|---|
date | Wed, 26 May 2021 15:55:48 -0400 |
parents | 6e7913283c7a |
children | 6af02446233f |
rev | line source |
---|---|
0 | 1 version 5.0 |
2 set nocompatible | |
3 set autoindent | |
4 set cindent | |
5 set mouse=a | |
6 set smartindent | |
7 set smarttab | |
27
a6c93cf45e90
* New changes to tab stuff, see if I like it better
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
19
diff
changeset
|
8 set tabstop=4 |
a6c93cf45e90
* New changes to tab stuff, see if I like it better
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
19
diff
changeset
|
9 set shiftwidth=2 |
a6c93cf45e90
* New changes to tab stuff, see if I like it better
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
19
diff
changeset
|
10 set softtabstop=2 |
a6c93cf45e90
* New changes to tab stuff, see if I like it better
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
19
diff
changeset
|
11 set expandtab |
0 | 12 syntax on |
28
3f49f8a2f4a4
* Autocommand for Makefiles
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
27
diff
changeset
|
13 set background=dark |
0 | 14 set textwidth=78 |
28
3f49f8a2f4a4
* Autocommand for Makefiles
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
27
diff
changeset
|
15 set showmatch |
69
2c6f108aeb09
* Why was 'hls' off... must have previously been defaulted on
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
28
diff
changeset
|
16 set hls |
0 | 17 hi Normal guibg=black guifg=white |
28
3f49f8a2f4a4
* Autocommand for Makefiles
huston@80426f53-59d1-405d-934b-f07cd76f4a1a
parents:
27
diff
changeset
|
18 autocmd FileType make setlocal noet | setlocal ts=8 | setlocal sw=8 |
109
07395fbde025
Adding puppet plugin:
Steve Huston <huston@astro.princeton.edu>
parents:
69
diff
changeset
|
19 filetype plugin indent on |