Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
datalabsnu committed Apr 10, 2019
1 parent 532b14f commit 3669ad7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
* `pylint`: pip3 install pylint
* `jedi`: pip3 install jedi
* `neovim-remote`: pip3 install neovim-remote
* `tmuxinator`: gem install tmuxinator

## tmux
### Installation
Expand Down
3 changes: 2 additions & 1 deletion bin/install_shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ cp shell/tmux-session ~/bin
echo "[shell] end shell installation"

echo "[ssh] start setting up ssh config"
cp ssh/config ~/.ssh
mkdir ~/.ssh
cp ssh/config ~/.ssh/config
echo "[ssh] end setting up ssh config"

echo "[dircolors] start installing dircolors"
Expand Down
7 changes: 7 additions & 0 deletions nvim/init.vim
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
""""""""""""""""""""""""""""
"""" Basic setup
""""""""""""""""""""""""""""
function! DoRemote(arg)
UpdateRemotePlugins
endfunction

call plug#begin()

"" Plugins for pythons
Expand Down Expand Up @@ -53,6 +57,7 @@ Plug 'xolox/vim-notes' " vim notes
Plug 'xolox/vim-misc' " misc for other plugins

"" Lab - Plugins for testing
Plug 'daeyun/vim-matlab', { 'do': function('DoRemote') }
Plug 'itchyny/calendar.vim'
Plug 'dsimidzija/vim-nerdtree-ignore' " nerdtreeignore
"Plug 'haya14busa/vim-gtrans'
Expand Down Expand Up @@ -82,6 +87,8 @@ set relativenumber
syntax on
let python_highlight_all = 1

autocmd BufNewFile,BufRead *.mex set syntax=mex


""" for vim slow issues
set nocompatible
Expand Down
2 changes: 1 addition & 1 deletion tmux/tmuxinator/nc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ root: ~/iCloud/Workspace/Projects/NC/nc-newsmap
windows:
- editor:
panes:
- nvim
- #empty
- run: #empty
1 change: 1 addition & 0 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ alias ls='gls --color=auto'
alias ll='ls -al'

# Path
export PATH="/Applications/MATLAB_R2018b.app/bin:${PATH}"
export PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
export PATH="~/bin:${PATH}"

Expand Down

0 comments on commit 3669ad7

Please sign in to comment.