Add vitasdk & update nvim config

This commit is contained in:
George Rawlinson 2016-10-22 11:21:44 +13:00
parent 0561929428
commit a7a537b8e1
3 changed files with 17 additions and 0 deletions

View File

@ -16,14 +16,19 @@ Plug 'chrisbra/sudoedit.vim'
call plug#end()
" Use UTF-8 encoding
set encoding=utf-8
" View line numbers
set number
" Configure vim-airline
let g:airline_theme='simple'
set laststatus=2
" Configure vim-monokai with syntax highlighting
colorscheme monokai
syntax enable
" Enable clipboard yanking
set clipboard+=unnamedplus

9
vitasdk/README.md Normal file
View File

@ -0,0 +1,9 @@
# VitaSDK
Unofficial SDK for the PS Vita. Development moves fast, so breaks often.
Check [vitasdk-cmake][url-vitasdk-cmake] and
[vitasdk][url-vitasdk] for prereqs & changes.
[url-vitasdk-cmake]: https://github.com/codestation/vitasdk-cmake
[url-vitasdk]: https://github.com/vitasdk

3
vitasdk/vita.zsh Normal file
View File

@ -0,0 +1,3 @@
# Define VITASDK & export to $PATH
export VITASDK=/usr/local/vitasdk
export PATH="$VITASDK/bin:$PATH"