Added hardmode
This commit is contained in:
parent
27ed6f444e
commit
c7ecd11b9f
2 changed files with 8 additions and 2 deletions
|
@ -44,6 +44,7 @@ Plug 'Shougo/denite.nvim'
|
|||
Plug 'fmoralesc/vim-tutor-mode', {'on' : 'Tutor'}
|
||||
Plug 'Shougo/neosnippet'
|
||||
Plug 'Shougo/neosnippet-snippets'
|
||||
Plug 'wikitopian/hardmode'
|
||||
call plug#end()
|
||||
|
||||
let test#strategy = "neoterm"
|
||||
|
@ -74,6 +75,8 @@ let g:elm_detailed_complete = 1
|
|||
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
|
||||
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
||||
|
||||
autocmd VimEnter,BufNewFile,BufReadPost * silent! call HardMode()
|
||||
|
||||
autocmd FileType typescript nmap <buffer> <Leader>i : <C-u>echo tsuquyomi#hint()<CR>
|
||||
autocmd FileType elm nmap <buffer> <Leader>i :ElmShowDocs<CR>
|
||||
|
||||
|
|
7
.zshrc
7
.zshrc
|
@ -29,7 +29,8 @@ zplug "zsh-users/zsh-syntax-highlighting"
|
|||
zplug "zsh-users/zsh-history-substring-search"
|
||||
zplug "zsh-users/zsh-completions"
|
||||
zplug "zsh-users/zsh-autosuggestions"
|
||||
zplug "tylerreckart/odin"
|
||||
#zplug "frmendes/geometry"
|
||||
zplug "yardnsm/blox-zsh-theme"
|
||||
zplug "gusaiani/elixir-oh-my-zsh"
|
||||
|
||||
if ! zplug check --verbose; then
|
||||
|
@ -41,11 +42,13 @@ fi
|
|||
zplug load
|
||||
|
||||
export EDITOR="nvim"
|
||||
export BLOX_BLOCK__SYMBOL_SYMBOL=">"
|
||||
BLOX_BLOCK__SYMBOL_EXIT_SYMBOL=">"
|
||||
|
||||
eval "$(hub alias -s)"
|
||||
alias vi="nvim"
|
||||
alias vim="nvim"
|
||||
alias cl="clear && screenfetch"
|
||||
alias cl="clear && $HOME/.apps/screenFetch/screenfetch-dev"
|
||||
alias prm=". $HOME/.prm/prm.sh"
|
||||
. $HOME/.asdf/asdf.sh
|
||||
. $HOME/.asdf/completions/asdf.bash
|
||||
|
|
Loading…
Reference in a new issue