This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ========================================================================== | |
* Utility Types and Functions | |
* ========================================================================== */ | |
export type StateAction<T extends string, P = undefined> = P extends void | |
? { | |
type: T | |
} | |
: { | |
type: T | |
payload: P |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" ================ | |
" - Plugins List - | |
" ================ | |
call plug#begin('~/.config/nvim/plugged') | |
Plug 'tpope/vim-surround' " Select/alter block characters like {, [ and ' | |
Plug 'junegunn/vim-easy-align' " Text alignment tool | |
Plug 'scrooloose/nerdtree' " Vim File manager | |
Plug 'itchyny/lightline.vim' " Extended status bar at bottom of editor |