In alchemist.vim/elixir_sense_client file, change:
#!/usr/bin/env python
to
#!/usr/bin/env python2
| sudo pacman -Syy | |
| sudo pacman -Su |
In alchemist.vim/elixir_sense_client file, change:
#!/usr/bin/env python
to
#!/usr/bin/env python2
| # Zim | |
| zprompt_theme='eriner' | |
| zcorrection='true' | |
| ztermtitle='%n@%m:%~' | |
| zhighlighters=(main brackets cursor) | |
| zmodules=(directory environment git git-info history input utility meta custom \ | |
| syntax-highlighting history-substring-search prompt completion autosuggestions) | |
| # Alias | |
| alias e="elixir" |
| # disable menubar | |
| gsettings set org.gnome.Terminal.Legacy.Settings default-show-menubar false |
| loadkeys br-abnt2 | |
| cfdisk /dev/sda | |
| mkfs.ext4 /dev/sda1 | |
| mkswap /dev/sda2 | |
| swapon /dev/sda2 | |
| mount /dev/sda1 /mnt |
| set $mod Mod1 | |
| font pango:monaco 10 | |
| # Use Mouse+$mod to drag floating windows to their wanted position | |
| floating_modifier $mod | |
| # start a terminal | |
| bindsym $mod+Return exec --no-startup-id i3-sensible-terminal |
| # Path to your oh-my-zsh installation. | |
| export ZSH=/home/ericdouglas/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="robbyrussell" | |
| # Uncomment the following line to use case-sensitive completion. |
| call plug#begin('~/.config/nvim/plugged') | |
| " autocomplete | |
| Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' } | |
| let g:deoplete#enable_at_startup = 1 | |
| " use tab for completion | |
| inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>" | |
| " polyglot loads language support on demand! | |
| Plug 'sheerun/vim-polyglot' |