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
| if has("syntax") | |
| syntax enable | |
| endif | |
| "vi์์ ํธํ์ฑ X | |
| set nocompatible | |
| " ๋ค์ฌ์ฐ๊ธฐ ์ค์ | |
| set autoindent | |
| set smartindent |
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
| // +page.server.ts | |
| export const load: PageServerLoad = async () => { | |
| const { | |
| data: { | |
| result: { uploadURL } | |
| } | |
| }: AxiosResponse = await axios(`https://api.cloudflare.com/client/v4/accounts/${PUBLIC_CF_ID}/images/v2/direct_upload`, { | |
| method: 'POST', | |
| headers: { |
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
| if has("syntax") | |
| syntax enable | |
| endif | |
| "vi์์ ํธํ์ฑ X | |
| set nocompatible | |
| " ๋ค์ฌ์ฐ๊ธฐ ์ค์ | |
| set autoindent | |
| set smartindent |
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
| { | |
| "coc.preferences.currentFunctionSymbolAutoUpdate": true, | |
| "coc.preferences.formatOnSave": true, | |
| "coc.preferences.jumpCommand": "edit", | |
| "diagnostic.errorSign": "โ", | |
| "diagnostic.warningSign": "โ ", | |
| "diagnostic.infoSign": "โน", | |
| "diagnostic.hintSign": "โค", | |
| "diagnostic.enableHighlightLineNumber": true, |
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
| if has("syntax") | |
| syntax enable | |
| endif | |
| "vi์์ ํธํ์ฑ X | |
| set nocompatible | |
| " ๋ค์ฌ์ฐ๊ธฐ ์ค์ | |
| set expandtab | |
| set autoindent |
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
| # rmap prefix from 'C-b' to 'C-a' | |
| unbind C-b | |
| set-option -g prefix C-a | |
| bind-key C-a send-prefix | |
| # split panes using | and - | |
| bind | split-window -h | |
| bind - split-window -v | |
| unbind '"' | |
| unbind % |