Compare commits
2 Commits
e131ebd135
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a941cc7ff6 | ||
|
|
cfe5a7524d |
@@ -1,4 +1,3 @@
|
|||||||
live_config_reload = true
|
|
||||||
|
|
||||||
[bell]
|
[bell]
|
||||||
animation = "EaseOutExpo"
|
animation = "EaseOutExpo"
|
||||||
@@ -571,12 +570,6 @@ hide_when_typing = true
|
|||||||
action = "PasteSelection"
|
action = "PasteSelection"
|
||||||
mouse = "Middle"
|
mouse = "Middle"
|
||||||
|
|
||||||
[mouse.double_click]
|
|
||||||
threshold = 300
|
|
||||||
|
|
||||||
[mouse.triple_click]
|
|
||||||
threshold = 300
|
|
||||||
|
|
||||||
[selection]
|
[selection]
|
||||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
||||||
|
|
||||||
@@ -590,3 +583,6 @@ lines = 40
|
|||||||
[window.padding]
|
[window.padding]
|
||||||
x = 2
|
x = 2
|
||||||
y = 0
|
y = 0
|
||||||
|
|
||||||
|
[general]
|
||||||
|
live_config_reload = true
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -122,8 +122,6 @@ call plug#begin('~/.config/nvim/bundle')
|
|||||||
"Interfaces
|
"Interfaces
|
||||||
Plug 'Shougo/unite.vim'
|
Plug 'Shougo/unite.vim'
|
||||||
Plug 'mhinz/vim-startify'
|
Plug 'mhinz/vim-startify'
|
||||||
"Arduino
|
|
||||||
Plug 'z3t0/arduvim'
|
|
||||||
|
|
||||||
"Utilities
|
"Utilities
|
||||||
Plug 'Shougo/vimfiler.vim'
|
Plug 'Shougo/vimfiler.vim'
|
||||||
@@ -135,39 +133,21 @@ Plug 'alvan/vim-closetag'
|
|||||||
Plug 'moll/vim-bbye'
|
Plug 'moll/vim-bbye'
|
||||||
Plug 'w0rp/ale'
|
Plug 'w0rp/ale'
|
||||||
Plug 'Shougo/deoplete.nvim'
|
Plug 'Shougo/deoplete.nvim'
|
||||||
Plug 'fishbullet/deoplete-ruby'
|
|
||||||
Plug 'Shougo/deoplete-rct'
|
Plug 'Shougo/deoplete-rct'
|
||||||
Plug 'editorconfig/editorconfig-vim'
|
Plug 'editorconfig/editorconfig-vim'
|
||||||
Plug 'vim-latex/vim-latex'
|
|
||||||
Plug 'noahfrederick/vim-laravel'
|
|
||||||
Plug '1995parham/vim-spice'
|
|
||||||
" Plug 'https://gitlab.com/code-stats/code-stats-vim.git'
|
|
||||||
|
|
||||||
|
|
||||||
"GIT
|
"GIT
|
||||||
Plug 'tpope/vim-fugitive'
|
Plug 'tpope/vim-fugitive'
|
||||||
Plug 'airblade/vim-gitgutter'
|
Plug 'airblade/vim-gitgutter'
|
||||||
|
|
||||||
"Ruby and rails
|
|
||||||
Plug 'tpope/vim-rails'
|
|
||||||
|
|
||||||
"Javascript
|
|
||||||
|
|
||||||
" EMMET - HTML autocompletions
|
|
||||||
Plug 'mattn/emmet-vim'
|
|
||||||
|
|
||||||
"syntax, colorscheme, etc. (visuals)
|
"syntax, colorscheme, etc. (visuals)
|
||||||
Plug 'chrisbra/Colorizer'
|
Plug 'chrisbra/Colorizer'
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
Plug '1995parham/vim-spice'
|
|
||||||
Plug 'mgee/lightline-bufferline'
|
Plug 'mgee/lightline-bufferline'
|
||||||
Plug 'ryanoasis/vim-devicons'
|
Plug 'ryanoasis/vim-devicons'
|
||||||
Plug 'PotatoesMaster/i3-vim-syntax'
|
|
||||||
Plug 'vim-scripts/octave.vim--'
|
|
||||||
Plug 'sheerun/vim-polyglot'
|
Plug 'sheerun/vim-polyglot'
|
||||||
Plug 'tristaan/vim-smooth'
|
Plug 'tristaan/vim-smooth'
|
||||||
Plug 'vivien/vim-linux-coding-style'
|
|
||||||
Plug 'sirtaj/vim-openscad'
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
"CODESTATS
|
"CODESTATS
|
||||||
|
|||||||
14
install.sh
14
install.sh
@@ -13,17 +13,22 @@ safe_link(){
|
|||||||
local dest="$HOME/`basename $src`"
|
local dest="$HOME/`basename $src`"
|
||||||
[ ! -e "$dest" ] && ln -sf "$src" "$dest"
|
[ ! -e "$dest" ] && ln -sf "$src" "$dest"
|
||||||
}
|
}
|
||||||
symlink_dotfiles() {
|
|
||||||
|
|
||||||
|
install_themes() {
|
||||||
|
( [ -e "${HOME}/.oh-my-zsh/custom/themes" ] && rm -r "${HOME}/.oh-my-zsh/custom/themes" ) || ln -fs "${SCRIPT_DIR}/zsh-themes" "${HOME}/.oh-my-zsh/custom/themes"
|
||||||
|
}
|
||||||
|
|
||||||
|
symlink_dotfiles() {
|
||||||
safe_link "$SCRIPT_DIR/.gitconfig"
|
safe_link "$SCRIPT_DIR/.gitconfig"
|
||||||
safe_link "$SCRIPT_DIR/.oh-my-zsh"
|
safe_link "$SCRIPT_DIR/.oh-my-zsh"
|
||||||
safe_link "$SCRIPT_DIR/.zshrc"
|
safe_link "$SCRIPT_DIR/.zshrc"
|
||||||
for file in .config/*; do
|
for file in .config/*; do
|
||||||
[ ! -e "${HOME}/${file}" ] && ln -fs "${SCRIPT_DIR}/${file}" "${HOME}/${file}"
|
[ ! -e "${HOME}/${file}" ] && ln -fs "${SCRIPT_DIR}/${file}" "${HOME}/${file}"
|
||||||
done
|
done
|
||||||
[ -e "${HOME}/.oh-my-zsh/custom/themes" ] && rm -r "${HOME}/.oh-my-zsh/custom/themes" && ln -fs "${SCRIPT_DIR}/zsh-themes" "${HOME}/.oh-my-zsh/custom/themes"
|
install_themes
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
for var in "$@"
|
for var in "$@"
|
||||||
do
|
do
|
||||||
# Install
|
# Install
|
||||||
@@ -51,4 +56,7 @@ do
|
|||||||
brew install --cask font-terminus
|
brew install --cask font-terminus
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
if [ $var == "-u" ] ; then
|
||||||
|
install_themes
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user