dotnet tool install --global dotnet-aspnet-codegenerator --version 3.1.4
export PATH="$HOME/.dotnet/tools:$PATH"
----- BEGIN LICENSE ----- | |
Member J2TeaM | |
Single User License | |
EA7E-1011316 | |
D7DA350E 1B8B0760 972F8B60 F3E64036 | |
B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD | |
FA0A2ABE 25F65BD8 D51458E5 3923CE80 | |
87428428 79079A01 AA69F319 A1AF29A4 | |
A684C2DC 0B1583D4 19CBD290 217618CD | |
5653E0A0 BACE3948 BB2EE45E 422D2C87 |
# Example tmux config | |
# Some tweaks to the status line | |
set -g status-right "%H:%M" | |
set -g window-status-current-style "underscore" | |
# If running inside tmux ($TMUX is set), then change the status line to red | |
%if #{TMUX} | |
set -g status-bg red | |
%endif |
" This is my init.vim config | |
" BY Alex Sanchez Arellano | |
call plug#begin() | |
" Themes | |
Plug 'crusoexia/vim-monokai' | |
Plug 'morhetz/gruvbox' | |
Plug 'robbyrussell/oh-my-zsh' | |
Plug 'tomasr/molokai' | |
Plug 'cocopon/iceberg.vim' |
# BY Alex Sanchez Arellano | |
set-option -sg escape-time 10 | |
set-option -g default-terminal "screen-256color" | |
set-option -g focus-events on | |
set-option -sa terminal-overrides ",screen-256color:RGB" | |
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'jimeh/tmux-themepack' |
touch ~/.tmux.conf
Example https://gist.github.com/alexnemesis/7fd6eb91d3e5572833384ac357a23213
tmux source-file ~/.tmux.conf
List of helpful tmux links for various tutorials, plugins, and configuration settings.
1. Install neovim ruby | |
gem install neovim | |
2. Find neovim_ruby_host | |
find / -iname 'neovim-ruby-host*' | |
3. Add these line to init.vim. |