Things again
This commit is contained in:
parent
4bdcd73d0c
commit
f42c8e0a3e
2
bashrc
2
bashrc
|
@ -11,7 +11,7 @@ export TZ=/usr/share/zoneinfo/Europe/Paris
|
||||||
# Favourite commands
|
# Favourite commands
|
||||||
export PAGER=less
|
export PAGER=less
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
export VISUAL=gvim
|
export VISUAL=vim
|
||||||
export BROWSER=qutebrowser
|
export BROWSER=qutebrowser
|
||||||
|
|
||||||
# Some programs need those changes
|
# Some programs need those changes
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
# Beware! This file is rewritten by htop when settings are changed in the interface.
|
||||||
# The parser is also very primitive, and not human-friendly.
|
# The parser is also very primitive, and not human-friendly.
|
||||||
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
fields=0 48 17 18 38 39 40 2 46 47 49 1
|
||||||
sort_key=47
|
sort_key=46
|
||||||
sort_direction=1
|
sort_direction=1
|
||||||
hide_threads=0
|
hide_threads=0
|
||||||
hide_kernel_threads=0
|
hide_kernel_threads=0
|
||||||
|
|
40
vimrc
40
vimrc
|
@ -14,8 +14,8 @@ Plugin 'gmarik/Vundle.vim'
|
||||||
Plugin 'L9'
|
Plugin 'L9'
|
||||||
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
|
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
|
||||||
Plugin 'tomasr/molokai'
|
Plugin 'tomasr/molokai'
|
||||||
Bundle 'Shougo/neosnippet'
|
"Bundle 'Shougo/neosnippet'
|
||||||
Bundle 'Shougo/neosnippet-snippets'
|
"Bundle 'Shougo/neosnippet-snippets'
|
||||||
Plugin 'tpope/vim-surround'
|
Plugin 'tpope/vim-surround'
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
Plugin 'tpope/vim-repeat'
|
Plugin 'tpope/vim-repeat'
|
||||||
|
@ -24,22 +24,23 @@ Plugin 'vim-airline/vim-airline-themes'
|
||||||
Plugin 'airblade/vim-gitgutter'
|
Plugin 'airblade/vim-gitgutter'
|
||||||
Plugin 'kien/ctrlp.vim'
|
Plugin 'kien/ctrlp.vim'
|
||||||
Plugin 'mbbill/undotree'
|
Plugin 'mbbill/undotree'
|
||||||
"Plugin 'scrooloose/nerdtree'
|
|
||||||
"Plugin 'Xuyuanp/nerdtree-git-plugin'
|
|
||||||
Plugin 'xolox/vim-misc'
|
Plugin 'xolox/vim-misc'
|
||||||
Plugin 'xolox/vim-easytags'
|
Plugin 'xolox/vim-easytags'
|
||||||
Plugin 'majutsushi/tagbar'
|
Plugin 'majutsushi/tagbar'
|
||||||
"Plugin 'gilligan/vim-lldb'
|
|
||||||
Plugin 'wellle/targets.vim'
|
Plugin 'wellle/targets.vim'
|
||||||
Plugin 'Chiel92/vim-autoformat'
|
Plugin 'Chiel92/vim-autoformat'
|
||||||
Plugin 'Valloric/YouCompleteMe'
|
Plugin 'Valloric/YouCompleteMe'
|
||||||
"Plugin 'Raimondi/delimitMate'
|
Plugin 'artur-shaik/vim-javacomplete2'
|
||||||
"Plugin 'Cocophotos/vim-ycm-latex-semantic-completer'
|
Plugin 'tomtom/tcomment_vim'
|
||||||
"Plugin 'IN3D/vim-raml'
|
Plugin 'Shougo/denite.nvim'
|
||||||
|
|
||||||
call vundle#end() " required
|
call vundle#end() " required
|
||||||
filetype plugin indent on " required
|
filetype plugin indent on " required
|
||||||
|
|
||||||
|
""" UNDOTREE """
|
||||||
|
|
||||||
|
nmap <F7> :UndotreeToggle<CR>:UndotreeFocus<CR>
|
||||||
|
|
||||||
""" CTRLP """
|
""" CTRLP """
|
||||||
|
|
||||||
let g:ctrlp_custom_ignore = {
|
let g:ctrlp_custom_ignore = {
|
||||||
|
@ -48,6 +49,10 @@ let g:ctrlp_custom_ignore = {
|
||||||
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
|
\ 'link': 'SOME_BAD_SYMBOLIC_LINKS',
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
|
""" TAGBAR """
|
||||||
|
|
||||||
|
nmap <F8> :TagbarToggle<CR>
|
||||||
|
|
||||||
""" VIM-AIRLINE """
|
""" VIM-AIRLINE """
|
||||||
|
|
||||||
set noshowmode
|
set noshowmode
|
||||||
|
@ -61,24 +66,13 @@ let g:airline_section_b = airline#section#create(['branch', 'hunks'])
|
||||||
let g:airline_section_z = airline#section#create(['%B', '@', '%l', ':', '%c'])
|
let g:airline_section_z = airline#section#create(['%B', '@', '%l', ':', '%c'])
|
||||||
let g:airline_theme = 'wombat'
|
let g:airline_theme = 'wombat'
|
||||||
|
|
||||||
""" NERDTREE-GIT-PLUGIN """
|
|
||||||
|
|
||||||
let g:NERDTreeIndicatorMapCustom = {
|
|
||||||
\ "Modified" : "✹",
|
|
||||||
\ "Staged" : "✚",
|
|
||||||
\ "Untracked" : "✭",
|
|
||||||
\ "Renamed" : "➜",
|
|
||||||
\ "Unmerged" : "═",
|
|
||||||
\ "Deleted" : "✖",
|
|
||||||
\ "Dirty" : "✗",
|
|
||||||
\ "Clean" : "✔︎",
|
|
||||||
\ "Unknown" : "?"
|
|
||||||
\ }
|
|
||||||
|
|
||||||
""" YOUCOMPLETEME """
|
""" YOUCOMPLETEME """
|
||||||
|
|
||||||
let g:ycm_global_ycm_extra_conf = '~/.config/ycm_extra_conf.py'
|
let g:ycm_global_ycm_extra_conf = '~/.config/ycm_extra_conf.py'
|
||||||
|
|
||||||
|
""" JAVACOMPLETE """
|
||||||
|
|
||||||
|
autocmd FileType java setlocal omnifunc=javacomplete#Complete
|
||||||
|
|
||||||
""" VIM SETTINGS """
|
""" VIM SETTINGS """
|
||||||
|
|
||||||
|
@ -114,8 +108,6 @@ set cursorcolumn
|
||||||
|
|
||||||
syntax enable
|
syntax enable
|
||||||
|
|
||||||
"set t_Co=256
|
|
||||||
"let g:molokai_original = 1
|
|
||||||
set background=dark
|
set background=dark
|
||||||
colorscheme molokai
|
colorscheme molokai
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue