Skip to content

Commit

Permalink
Faffed around with stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
g-erson committed Sep 29, 2018
1 parent 4e4e8d0 commit 05fb58b
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 18 deletions.
1 change: 1 addition & 0 deletions .config/oni/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ exports.configuration = {
"language.vue.languageServer.command":"vls",
"experimental.indentLines.enabled": true,
"oni.useDefaultConfig": true,
"tab.mode" : "tabs",
"oni.bookmarks": ["~/Documents"],
"editor.textMateHighlighting.enabled" : true,
"editor.fontSize": "15px",
Expand Down
43 changes: 25 additions & 18 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,28 @@ Plugin 'gmarik/vundle'
" Keep bundle commands between here and filetype plugin indent on.
" scripts on GitHub repos
if exists('g:gui_oni')
set noshowmode
set noruler
set laststatus=0
set noshowcmd
set noshowmode
set noruler
set laststatus=0
set noshowcmd
else
" Statements here
Plugin 'Valloric/YouCompleteMe' "This is just the client. Install server
"with ./<plugin location>/install.sh
" --clang-completer
"
Plugin 'jistr/vim-nerdtree-tabs'
"Configure ctrlp
set runtimepath^=~/.vim/bundle/ctrlp.vim
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'ctrlpvim/ctrlp.vim'
" Statements here
Plugin 'Valloric/YouCompleteMe' "This is just the client. Install server
"with ./<plugin location>/install.sh
" --clang-completer
"
Plugin 'jistr/vim-nerdtree-tabs'
set runtimepath^=~/.vim/bundle/ctrlp.vim

Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'ctrlpvim/ctrlp.vim'

"" Ignore some folders and files for CtrlP indexing
let g:ctrlp_custom_ignore = {
\ 'dir': '\.git$\|\.yardoc\|node_modules\|vendor\|log\|tmp$',
\ 'file': '\.so$\|\.dat$|\.DS_Store$'
\ }
endif

Plugin 'ap/vim-css-color'
Expand All @@ -39,6 +45,7 @@ Plugin 'tpope/vim-rails'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/nerdtree'
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-surround'
"Plugin 'scrooloose/syntastic'
Plugin 'vim-ruby/vim-ruby'
Plugin 'peterhoeg/vim-qml'
Expand Down Expand Up @@ -93,9 +100,9 @@ if _curfile =~ "Makefile" || _curfile =~ "makefile" || _curfile =~ ".*\.mk"
set noexpandtab
else
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4
set tabstop=2
set shiftwidth=2
set softtabstop=2
endif

"===================== Reselect visual block after indent/outdent ===========
Expand Down
2 changes: 2 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ export PATH="$HOME/.local/kitty.app/bin:$PATH"

bindkey "^P" up-line-or-search
setopt NO_NOMATCH
bindkey -v # instead of set -o vi
bindkey -e jk \\e

export PATH=$HOME/Android/Sdk/tools/bin:$PATH
export PATH=$HOME/android-studio/bin:$PATH
Expand Down

0 comments on commit 05fb58b

Please sign in to comment.