diff --git a/install/atom.sh b/install/atom.sh index 6514ef5..96fe8ae 100644 --- a/install/atom.sh +++ b/install/atom.sh @@ -3,17 +3,13 @@ URL="https://atom.io/download/deb" TEMP_FILE="/tmp/atom-install.deb" -!(which atom) $$ echo "atom already installed.." && sudo wget -O "$TEMP_FILE" "$URL" && sudo dpkg -i --skip-same-version "$TEMP_FILE" && sudo rm "$TEMP_FILE" PACKAGES=( # Rust language support - "atom-language-rust" - "rust-doc-viewer" - "linter" - "linter-rust" + "ide-rust" # Themes & Syntax themes "github-atom-light-syntax" "spacegray-light-neue-ui" diff --git a/profiles/.inputrc b/profiles/.inputrc index 8a58c9f..5ac6d3d 100644 --- a/profiles/.inputrc +++ b/profiles/.inputrc @@ -33,3 +33,5 @@ set convert-meta off # Filtered history search "\e[A": history-search-backward "\e[B": history-search-forward + +set prefer-visible-bell on diff --git a/profiles/.vimrc b/profiles/.vimrc index 2e63d26..3c19778 100644 --- a/profiles/.vimrc +++ b/profiles/.vimrc @@ -1,5 +1,19 @@ set encoding=utf-8 -set list listchars=tab:→\ ,trail:· +set list listchars=tab:→\ ,trail:· " make whitespace visible + +set mouse=a " automatically enable mouse usage +set noerrorbells visualbell t_vb= " no annoying sound on errors +set shortmess+=OI +set nu " set line numbers on +set completeopt+=noinsert,noselect +set completeopt-=preview " disable autocomplete preview +set wildmenu " show list instead of just completing +set autoindent " Indent at the same level of the previous line +set shiftwidth=4 " Use indents of 4 spaces +set expandtab " Tabs are spaces, not tabs +set tabstop=4 " An indentation every four columns +set softtabstop=4 " Let backspace delete indent syntax on +