diff --git a/scripts/create_container b/scripts/create_container index a823244..1beefe9 100755 --- a/scripts/create_container +++ b/scripts/create_container @@ -18,7 +18,7 @@ add_ssh() { sed -i 's/^#Port .*/Port '"$PORT"'/' $CONTAINER_PATH/etc/ssh/sshd_config sed -i 's/^#PermitRootLogin .*/PermitRootLogin yes/' $CONTAINER_PATH/etc/ssh/sshd_config - touch $CONTAINER_PATH/root/.bash_profile + touch $CONTAINER_PATH/root/.profile cat <<- 'EOF' > $CONTAINER_PATH/root/.bash_profile # Start ssh-agent and add keys in ~/.ssh directory # Should only be used without a desktop manager diff --git a/terminal-color b/terminal-color new file mode 100644 index 0000000..2765ba1 --- /dev/null +++ b/terminal-color @@ -0,0 +1 @@ +#3b3b3b diff --git a/vim/.vimrc b/vim/.vimrc index 3aca583..7754f3c 100755 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -15,7 +15,7 @@ set tabstop=4 shiftwidth=4 softtabstop=4 expandtab " Fold methods based on indents " zo to open folds, zc to close set foldmethod=indent -set foldlevel=99 +set foldlevel=20 " Search down into subfolders " Provides tab-completion for all file-related tasks @@ -35,13 +35,11 @@ colorscheme seagull "Change theme depending on the time of day let hr = (strftime('%H')) if hr >= 19 - set background=dark - colorscheme spacemacs + colorscheme base16-eighties elseif hr >= 8 colorscheme xcode elseif hr >= 0 - set background=dark - colorscheme spacemacs + colorscheme base16-eighties endif " Terminal colors @@ -94,8 +92,6 @@ au BufWinEnter * silent loadview "files in current directory autocmd FileType python compiler pylint - - "Netrw options function! ToggleVExplorer() if exists("t:expl_buf_num")