diff options
-rw-r--r-- | dev/.ssh/config | 9 | ||||
-rwxr-xr-x | vim/.vim/vimrc | 4 |
2 files changed, 10 insertions, 3 deletions
diff --git a/dev/.ssh/config b/dev/.ssh/config index b1425ef..052d1ad 100644 --- a/dev/.ssh/config +++ b/dev/.ssh/config @@ -1 +1,8 @@ -AddKeysToAgent yes +AddKeysToAgent yes + +Host acanban + HostName acanban.ga + User weboms + Port 22222 + RequestTTY yes + RemoteCommand ssh acanban diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc index 86a5f47..92d3777 100755 --- a/vim/.vim/vimrc +++ b/vim/.vim/vimrc @@ -20,8 +20,8 @@ augroup vimrc autocmd BufNewFile,BufRead *.PAS setlocal filetype=pascal autocmd BufNewFile,BufRead *.sql setlocal filetype=mysql autocmd BufNewFile,BufRead *.m setlocal filetype=octave - autocmd FileType asm,c,h,go,glsl,php - \ setlocal cindent cinoptions=(0 noexpandtab shiftwidth=8 + autocmd FileType asm,c,h,go,glsl,sshconfig,php + \ setlocal cindent cinoptions=(0 noexpandtab shiftwidth=8 tabstop=8 autocmd FileType vim,sh,lua,tex,cmake,cpp,plantuml,mysql,html,octave,pascal \ setlocal shiftwidth=2 autocmd FileType rst setlocal shiftwidth=3 |