installed airline

This commit is contained in:
Adrien Luxey 2019-02-10 18:35:53 +01:00
parent 7c40478720
commit 9b9fd5f4cd
9 changed files with 71 additions and 13298 deletions

9
.gitmodules vendored
View File

@ -16,3 +16,12 @@
[submodule "tmux/plugins/tmux-yank"]
path = 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
View File

@ -2,3 +2,4 @@ Projects/
Package Control.cache/
*.last-run
.SublimeREPLHistory
GoSublime/

File diff suppressed because it is too large Load Diff

1
vim/bundle/Vundle.vim Submodule

@ -0,0 +1 @@
Subproject commit 9a38216a1c0c597f978d73547d37681fc689c90d

@ -0,0 +1 @@
Subproject commit 1471330825a51fef66c5c36051d4ef8deb53c4b8

@ -0,0 +1 @@
Subproject commit 3bfe1d00d48f7c35b7c0dd7af86229c9e63e14a9

65
vimrc
View File

@ -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
" noremap <Up> <NOP>
" noremap <Down> <NOP>
@ -17,6 +36,24 @@ augroup numbertoggle
autocmd BufLeave,FocusLost,InsertEnter * set norelativenumber
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 "
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@ -58,20 +95,20 @@ if !v:shell_error && s:uname == "Linux" && !has('nvim')
set ttymouse=xterm
endif
syntax enable
if has('gui_running')
set transparency=3
" fix js regex syntax
set regexpengine=1
syntax enable
endif
set background=dark
colorscheme solarized
let g:solarized_termtrans=1
let g:hybrid_use_Xresources = 1
let g:rehash256 = 1
set guifont=Inconsolata:h15
set guioptions-=L
" syntax enable
" if has('gui_running')
" set transparency=3
" " fix js regex syntax
" set regexpengine=1
" syntax enable
" endif
" set background=dark
" colorscheme solarized
" let g:solarized_termtrans=1
" let g:hybrid_use_Xresources = 1
" let g:rehash256 = 1
" set guifont=Inconsolata:h15
" set guioptions-=L
" 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.

10
zshrc
View File

@ -13,7 +13,8 @@ export ZSH=$HOME/.oh-my-zsh
ZSH_THEME="agnoster"
# 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
# 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
# under VCS as dirty. This makes repository status check for large repositories
# 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
# stamp shown in the history command output.
@ -96,13 +97,16 @@ alias o="xdg-open > /dev/null 2>&1"
# Set Go environment
export PATH="$PATH:/usr/local/go/bin"
export GOPATH=$HOME/goroot
if [ -d "$HOME/bin" ] ; then
if [ -d "$GOPATH/bin" ] ; then
PATH="$PATH:$GOPATH/bin"
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=$PATH:/home/adrien/.shadow/bin
export PATH=$PATH:/home/adrien/.local/bin
if [ -d "$HOME/bin" ] ; then
PATH="$PATH:$HOME/bin"
fi
# Enable Autojump (j)
. /usr/share/autojump/autojump.sh