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
call plug#begin('~/.config/nvim/bundle') | |
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
Plug 'scrooloose/nerdtree' | |
Plug 'scrooloose/nerdcommenter' | |
Plug 'scrooloose/syntastic' | |
Plug 'trevordmiller/nova-vim' | |
Plug 'https://github.com/joshdick/onedark.vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'mxw/vim-jsx' | |
Plug 'tpope/vim-surround' |
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
#!/bin/bash | |
echo "Building docker containers!" | |
eval "docker-compose build --build-arg uid=$UID" |
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
*, | |
*::before, | |
*::after { | |
margin: 0; | |
padding: 0; | |
outline: 0; | |
border: 0; | |
box-sizing: border-box; | |
} |
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
" | |
" /---------| |-- /--| * mendes13 - Gustavo Mendes de Medeiros | |
" | /-------| | \ / | * GitHub: https://www.github.com/mendes13 | |
" | | | \ \ / /| | | |
" | | |---\ | | | \__/ | | My .vimrc configuration file, feel free to try | |
" | \-----/ | | | | | it out! Keep in mind that I do use Vim Plug as | |
" \---------/ |_| |_| my plugin manager, so don't forget to install it! | |
" | |
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
# ctrl-space for modifier | |
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix | |
# color theme | |
set -g default-terminal "xterm-256color" | |
set -ga terminal-overrides ",xterm-256color:Tc" | |
# mouse functionality |
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
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
ZSH_THEME="robbyrussell" | |
plugins=( | |
git | |
vi-mode | |
shrink-path | |
asdf |
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
! /---------| |-- /--| - Gustavo Mendes de Medeiros | |
! | /-------| | \ / | | |
! | | | \ \ / /| | GitHub: https://www.github.com/mendes13 | |
! | | |-----\ | |\ \/ / | | Twitter: @mendesss13 | |
! | | |---\ | | | \__/ | | | |
! | \-----/ | | | | | | |
! \---------/ |_| |_| | |
! | |
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
-- | |
-- xmonad example config file. | |
-- | |
-- A template showing all available configuration hooks, | |
-- and how to override the defaults in your own xmonad.hs conf file. | |
-- | |
-- Normally, you'd only override those defaults you care about. | |
-- | |
import XMonad |
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
#!/bin/bash | |
# depends on the pacman-contrib | |
cupd=$(checkupdates | wc -l) | |
echo "$cupd available " |
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
{ | |
//Styles and Font Size of the editor (General) | |
"workbench.iconTheme": "material-icon-theme", | |
// "workbench.colorTheme": "One Dark Pro", | |
"editor.fontSize": 12, | |
"terminal.integrated.fontSize": 12, | |
"window.titleBarStyle": "custom", | |
"editor.tabSize": 2, | |
"editor.cursorStyle": "block", | |
"editor.acceptSuggestionOnEnter": "off", |
OlderNewer