Stale update

This commit is contained in:
Fabian Ising
2020-03-23 15:08:52 +01:00
parent e30f106623
commit 95356e8469
9 changed files with 20 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
[options] [options]
font = Monospace 9 font = DejaVu Sans Mono For Powerline
[colors] [colors]

1
.gitignore vendored
View File

@@ -1 +1,2 @@
*.swp *.swp
tags

4
.gitmodules vendored
View File

@@ -9,3 +9,7 @@
[submodule "bundle/Vundle.vim"] [submodule "bundle/Vundle.vim"]
path = vim/bundle/Vundle.vim path = vim/bundle/Vundle.vim
url = https://github.com/VundleVim/Vundle.vim.git url = https://github.com/VundleVim/Vundle.vim.git
[submodule "nvim/bundle/Vundle.vim"]
path = nvim/bundle/Vundle.vim
url = https://github.com/VundleVim/Vundle.vim.git

View File

@@ -15,4 +15,4 @@ ln -Tsv $PWD/zsh $HOME/.zsh
ln -Tsv ~/.zsh/.zshrc $HOME/.zshrc ln -Tsv ~/.zsh/.zshrc $HOME/.zshrc
ln -Tsv $PWD/tmux $HOME/.tmux ln -Tsv $PWD/tmux $HOME/.tmux
ln -Tsv ~/.tmux/.tmux.conf $HOME/.tmux.conf ln -Tsv ~/.tmux/.tmux.conf $HOME/.tmux.conf
ln -Tsv $PWD/nvim $HOME/.config/nvim

View File

@@ -13,7 +13,7 @@ Plugin 'vim-airline/vim-airline-themes'
" Tags " Tags
Plugin 'xolox/vim-misc' Plugin 'xolox/vim-misc'
Plugin 'xolox/vim-easytags' Plugin 'ludovicchabant/vim-gutentags'
Plugin 'majutsushi/tagbar' Plugin 'majutsushi/tagbar'
" Templates " Templates
@@ -179,6 +179,8 @@ nmap <Leader>t :call TextWrapToggle()<CR>
"Copying "Copying
set clipboard=unnamedplus,unnamed " Copy/Paste set clipboard=unnamedplus,unnamed " Copy/Paste
" Airline
let g:airline_powerline_fonts = 1
" TagBar " TagBar
nmap <F8> :TagbarToggle<CR> nmap <F8> :TagbarToggle<CR>
@@ -189,7 +191,7 @@ nmap <C-]> <C-w><C-]><C-w>T
let g:ycm_collect_identifiers_from_tags_files = 1 " Read from tag files let g:ycm_collect_identifiers_from_tags_files = 1 " Read from tag files
let g:ycm_global_ycm_extra_conf = '~/.config/nvim/.ycm_extra_conf.py' " Standard conf let g:ycm_global_ycm_extra_conf = '~/.config/nvim/.ycm_extra_conf.py' " Standard conf
let g:ycm_enable_diagnostic_signs = 0 " Do not show semantic error bar let g:ycm_enable_diagnostic_signs = 0 " Do not show semantic error bar
let g:ycm_server_python_interpreter = '/usr/local/bin/python' let g:ycm_server_python_interpreter = '/usr/bin/python3'
let g:ycm_key_list_select_completion = ['<C-j>', '<C-n>', '<Down>'] let g:ycm_key_list_select_completion = ['<C-j>', '<C-n>', '<Down>']
let g:ycm_key_list_previous_completion = ['<C-k>', '<C-p>', '<Up>'] let g:ycm_key_list_previous_completion = ['<C-k>', '<C-p>', '<Up>']
@@ -233,13 +235,6 @@ catch
" Ignore non existing file " Ignore non existing file
endtry endtry
" Powerline
try
source ~/.config/nvim/.vimrc_config_powerline
catch
" Ignore non existing file
endtry
" Extra stuff " Extra stuff
try try
source ~/.config/nvim/.vimrc_config_extra_stuff source ~/.config/nvim/.vimrc_config_extra_stuff

View File

@@ -9,7 +9,7 @@
sudo pacman --needed -Sy archlinux-keyring --noconfirm sudo pacman --needed -Sy archlinux-keyring --noconfirm
sudo pacman --needed -Syu --noconfirm sudo pacman --needed -Syu --noconfirm
yes | sudo pacman --needed -Sy vte3-ng yes | sudo pacman --needed -Sy vte3-ng
sudo pacman --needed -Sy base-devel xorg xorg-xinit gnome gnome-extra gvim zsh tmux openssh termite powerline powerline-fonts i3 rofi nitrogen --noconfirm sudo pacman --needed -Sy base-devel xorg xorg-xinit gnome gnome-extra neovim zsh tmux openssh termite powerline powerline-fonts i3 rofi nitrogen python-pip --noconfirm
./clone_and_link.sh ./clone_and_link.sh
cp zsh/.powerline_config_arch.example zsh/.powerline_config cp zsh/.powerline_config_arch.example zsh/.powerline_config
cp vim/.vimrc_config_powerline_arch.example vim/.vimrc_config_powerline cp vim/.vimrc_config_powerline_arch.example vim/.vimrc_config_powerline

View File

@@ -1 +1 @@
source /usr/lib/python3.6/site-packages/powerline/bindings/tmux/powerline.conf source /usr/lib/python3.7/site-packages/powerline/bindings/tmux/powerline.conf

View File

@@ -1 +1 @@
source /usr/lib/python3.6/site-packages/powerline/bindings/zsh/powerline.zsh source /usr/lib/python3.8/site-packages/powerline/bindings/zsh/powerline.zsh

View File

@@ -50,3 +50,9 @@ export PATH="/usr/local/opt/gnu-getopt/bin:$PATH"
test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh" test -e "${HOME}/.iterm2_shell_integration.zsh" && source "${HOME}/.iterm2_shell_integration.zsh"
PATH="/home/fabian/perl5/bin${PATH:+:${PATH}}"; export PATH;
PERL5LIB="/home/fabian/perl5/lib/perl5${PERL5LIB:+:${PERL5LIB}}"; export PERL5LIB;
PERL_LOCAL_LIB_ROOT="/home/fabian/perl5${PERL_LOCAL_LIB_ROOT:+:${PERL_LOCAL_LIB_ROOT}}"; export PERL_LOCAL_LIB_ROOT;
PERL_MB_OPT="--install_base \"/home/fabian/perl5\""; export PERL_MB_OPT;
PERL_MM_OPT="INSTALL_BASE=/home/fabian/perl5"; export PERL_MM_OPT;