installed airline
This commit is contained in:
parent
7c40478720
commit
9b9fd5f4cd
9 changed files with 71 additions and 13298 deletions
9
.gitmodules
vendored
9
.gitmodules
vendored
|
@ -16,3 +16,12 @@
|
||||||
[submodule "tmux/plugins/tmux-yank"]
|
[submodule "tmux/plugins/tmux-yank"]
|
||||||
path = tmux/plugins/tmux-yank
|
path = tmux/plugins/tmux-yank
|
||||||
url = https://git::@github.com/tmux-plugins/tmux-yank
|
url = https://git::@github.com/tmux-plugins/tmux-yank
|
||||||
|
[submodule "vim/bundle/Vundle.vim"]
|
||||||
|
path = vim/bundle/Vundle.vim
|
||||||
|
url = git@github.com:VundleVim/Vundle.vim.git
|
||||||
|
[submodule "vim/bundle/vim-airline"]
|
||||||
|
path = vim/bundle/vim-airline
|
||||||
|
url = https://github.com/vim-airline/vim-airline.git
|
||||||
|
[submodule "vim/bundle/vim-airline-themes"]
|
||||||
|
path = vim/bundle/vim-airline-themes
|
||||||
|
url = https://github.com/vim-airline/vim-airline-themes.git
|
||||||
|
|
1
sublime/.gitignore
vendored
1
sublime/.gitignore
vendored
|
@ -2,3 +2,4 @@ Projects/
|
||||||
Package Control.cache/
|
Package Control.cache/
|
||||||
*.last-run
|
*.last-run
|
||||||
.SublimeREPLHistory
|
.SublimeREPLHistory
|
||||||
|
GoSublime/
|
||||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
1
vim/bundle/Vundle.vim
Submodule
1
vim/bundle/Vundle.vim
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 9a38216a1c0c597f978d73547d37681fc689c90d
|
1
vim/bundle/vim-airline
Submodule
1
vim/bundle/vim-airline
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 1471330825a51fef66c5c36051d4ef8deb53c4b8
|
1
vim/bundle/vim-airline-themes
Submodule
1
vim/bundle/vim-airline-themes
Submodule
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 3bfe1d00d48f7c35b7c0dd7af86229c9e63e14a9
|
65
vimrc
65
vimrc
|
@ -1,3 +1,22 @@
|
||||||
|
" Vundle config
|
||||||
|
set nocompatible " be iMproved, required
|
||||||
|
filetype off " required
|
||||||
|
|
||||||
|
set rtp+=~/.vim/bundle/Vundle.vim
|
||||||
|
call vundle#begin()
|
||||||
|
|
||||||
|
" let Vundle manage Vundle, required
|
||||||
|
Plugin 'VundleVim/Vundle.vim'
|
||||||
|
|
||||||
|
" Airline theme
|
||||||
|
Plugin 'vim-airline/vim-airline'
|
||||||
|
Plugin 'vim-airline/vim-airline-themes'
|
||||||
|
|
||||||
|
" All of your Plugins must be added before the following line
|
||||||
|
call vundle#end() " required
|
||||||
|
filetype plugin indent on " required
|
||||||
|
|
||||||
|
|
||||||
" I wanna suffer: disable arrow keys
|
" I wanna suffer: disable arrow keys
|
||||||
" noremap <Up> <NOP>
|
" noremap <Up> <NOP>
|
||||||
" noremap <Down> <NOP>
|
" noremap <Down> <NOP>
|
||||||
|
@ -17,6 +36,24 @@ augroup numbertoggle
|
||||||
autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
|
autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
|
||||||
augroup END
|
augroup END
|
||||||
|
|
||||||
|
" Styling
|
||||||
|
syntax enable
|
||||||
|
set background=dark
|
||||||
|
" let g:airline_theme='one'
|
||||||
|
"if has('gui_running')
|
||||||
|
" set transparency=3
|
||||||
|
" fix js regex syntax
|
||||||
|
" set regexpengine=1
|
||||||
|
" syntax enable
|
||||||
|
"endif
|
||||||
|
" colorscheme solarized
|
||||||
|
" let g:solarized_termtrans=1
|
||||||
|
"let g:hybrid_use_Xresources = 1
|
||||||
|
" let g:rehash256 = 1
|
||||||
|
" set guifont=Inconsolata:h15
|
||||||
|
" set guioptions-=L
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" From https://github.com/jessfraz/.vim/blob/master/vimrc "
|
" From https://github.com/jessfraz/.vim/blob/master/vimrc "
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
@ -58,20 +95,20 @@ if !v:shell_error && s:uname == "Linux" && !has('nvim')
|
||||||
set ttymouse=xterm
|
set ttymouse=xterm
|
||||||
endif
|
endif
|
||||||
|
|
||||||
syntax enable
|
" syntax enable
|
||||||
if has('gui_running')
|
" if has('gui_running')
|
||||||
set transparency=3
|
" set transparency=3
|
||||||
" fix js regex syntax
|
" " fix js regex syntax
|
||||||
set regexpengine=1
|
" set regexpengine=1
|
||||||
syntax enable
|
" syntax enable
|
||||||
endif
|
" endif
|
||||||
set background=dark
|
" set background=dark
|
||||||
colorscheme solarized
|
" colorscheme solarized
|
||||||
let g:solarized_termtrans=1
|
" let g:solarized_termtrans=1
|
||||||
let g:hybrid_use_Xresources = 1
|
" let g:hybrid_use_Xresources = 1
|
||||||
let g:rehash256 = 1
|
" let g:rehash256 = 1
|
||||||
set guifont=Inconsolata:h15
|
" set guifont=Inconsolata:h15
|
||||||
set guioptions-=L
|
" set guioptions-=L
|
||||||
|
|
||||||
" Search mappings: These will make it so that going to the next one in a
|
" Search mappings: These will make it so that going to the next one in a
|
||||||
" search will center on the line it's found in.
|
" search will center on the line it's found in.
|
||||||
|
|
10
zshrc
10
zshrc
|
@ -13,7 +13,8 @@ export ZSH=$HOME/.oh-my-zsh
|
||||||
ZSH_THEME="agnoster"
|
ZSH_THEME="agnoster"
|
||||||
|
|
||||||
# Uncomment the following line to use case-sensitive completion.
|
# Uncomment the following line to use case-sensitive completion.
|
||||||
CASE_SENSITIVE="true"
|
#CASE_SENSITIVE="true"
|
||||||
|
CASE_SENSITIVE="false"
|
||||||
|
|
||||||
# Uncomment the following line to use hyphen-insensitive completion. Case
|
# Uncomment the following line to use hyphen-insensitive completion. Case
|
||||||
# sensitive completion must be off. _ and - will be interchangeable.
|
# sensitive completion must be off. _ and - will be interchangeable.
|
||||||
|
@ -40,7 +41,7 @@ CASE_SENSITIVE="true"
|
||||||
# Uncomment the following line if you want to disable marking untracked files
|
# Uncomment the following line if you want to disable marking untracked files
|
||||||
# under VCS as dirty. This makes repository status check for large repositories
|
# under VCS as dirty. This makes repository status check for large repositories
|
||||||
# much, much faster.
|
# much, much faster.
|
||||||
# DISABLE_UNTRACKED_FILES_DIRTY="true"
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||||
|
|
||||||
# Uncomment the following line if you want to change the command execution time
|
# Uncomment the following line if you want to change the command execution time
|
||||||
# stamp shown in the history command output.
|
# stamp shown in the history command output.
|
||||||
|
@ -96,13 +97,16 @@ alias o="xdg-open > /dev/null 2>&1"
|
||||||
# Set Go environment
|
# Set Go environment
|
||||||
export PATH="$PATH:/usr/local/go/bin"
|
export PATH="$PATH:/usr/local/go/bin"
|
||||||
export GOPATH=$HOME/goroot
|
export GOPATH=$HOME/goroot
|
||||||
if [ -d "$HOME/bin" ] ; then
|
if [ -d "$GOPATH/bin" ] ; then
|
||||||
PATH="$PATH:$GOPATH/bin"
|
PATH="$PATH:$GOPATH/bin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#export PATH=/home/adrien/bin:/opt/texbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/adrien/goroot/bin:/usr/local/go/bin:/home/adrien/goroot/bin:/home/adrien/.shadow/bin
|
#export PATH=/home/adrien/bin:/opt/texbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/home/adrien/goroot/bin:/usr/local/go/bin:/home/adrien/goroot/bin:/home/adrien/.shadow/bin
|
||||||
#export PATH=$PATH:/home/adrien/.shadow/bin
|
#export PATH=$PATH:/home/adrien/.shadow/bin
|
||||||
export PATH=$PATH:/home/adrien/.local/bin
|
export PATH=$PATH:/home/adrien/.local/bin
|
||||||
|
if [ -d "$HOME/bin" ] ; then
|
||||||
|
PATH="$PATH:$HOME/bin"
|
||||||
|
fi
|
||||||
|
|
||||||
# Enable Autojump (j)
|
# Enable Autojump (j)
|
||||||
. /usr/share/autojump/autojump.sh
|
. /usr/share/autojump/autojump.sh
|
||||||
|
|
Loading…
Reference in a new issue