-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcbcad9
commit e0f89cd
Showing
5 changed files
with
41 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
filetype on | ||
syntax on | ||
set number | ||
set cursorline | ||
set cursorcolumn | ||
colorscheme desert | ||
|
||
autocmd BufNewFile,BufRead *.yaml,*.yml set filetype=yaml | ||
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab | ||
|
||
autocmd BufRead,BufNewFile *.cfg set filetype=haproxy | ||
autocmd FileType haproxy setlocal tabstop=4 shiftwidth=4 expandtab | ||
autocmd FileType haproxy setlocal commentstring=#\ %s | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[user] | ||
|
||
name = {{ git_name }} | ||
|
||
email = {{ git_email }} | ||
|
||
[alias] | ||
br = branch | ||
co = checkout | ||
sts = status | ||
sth = stash |