Skip to content

Instantly share code, notes, and snippets.

View maxsuelmarinho's full-sized avatar

Maxsuel Marinho maxsuelmarinho

  • Rio de Janeiro
View GitHub Profile

Terminal + Zsh + Windows + WSL + Ubuntu + VS Code + Git Bash + Windows Terminal

Zsh

Install

$ sudo apt install zsh
$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
$ git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.zsh-syntax-highlighting" --depth 1
@maxsuelmarinho
maxsuelmarinho / .vimrc
Last active April 16, 2023 00:24
Vim + Golang + NerdTree + dracula theme
" 1 - Create a ~/.vimrc file with this content:
" 2 - Plugin manager: curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
" 3 - Install plugins: vim +PlugInstall
call plug#begin()
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
Plug 'SirVer/ultisnips'
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'vim-airline/vim-airline'