-
Rust로 만든Warp: The terminal for the 21st century러스트Rust로_만든프로그램_IDE_Terminal_warp/Helix_text_editor 2022. 4. 11. 15:08728x90
warp demo
소개 영상
https://youtu.be/AtE2fNimYMI
내가 만든 영상
warp terminal demo영상
& 러스트 rust shadwing섀도잉 연습
warp terminal logo색깔 Customization할 수 있음 yaml만들어서 수정하면 됨.
~./warp
http://todayusefulinfo.tistory.com/5
https://www.warp.dev/blog/create-custom-terminal-theme
세팅 예시
#!/bin/bash # Theme Configuration readonly THEME_NAME="warp_dark" readonly THEME_CONTENT='accent: "#00c2ff" foreground: "#ffffff" terminal_colors: normal: black: "#616161" red: "#ff8272" magenta: "#ff8ffd" cyan: "#d0d1fe" blue: "#a5d5fe" white: "#f1f1f1" green: "#b4fa72" yellow: "#fefdc2" bright: green: "#d6fcb9" magenta: "#ffb1fe" black: "#8e8e8e" yellow: "#fefdd5" red: "#ffc4bd" white: "#feffff" blue: "#c1e3fe" cyan: "#e5e6fe" background: "#000000" details: "darker" ' # Warp Variables readonly WARP_THEME_DIR="$HOME/.warp/themes" # Colors readonly RESET="\033[0m" readonly BLACK="\033[0;30m" readonly BOLD="\033[1m" readonly DIM="\033[2m" readonly GREEN_BOLD="\033[1;32m" readonly RED_BOLD="\033[1;31m" readonly BACKGROUND_LIGHT_GREEN="\033[102m" readonly BACKGROUND_LIGHT_RED="\033[101m" printf "${BOLD}Warp-Themes Installer ${RESET}${DIM}(v1.0.0)${RESET}\n\n" printf "${GREEN_BOLD}✔${RESET} ${BOLD}Installing theme:${RESET}${DIM} ${THEME_NAME}${RESET}\n" # Check if WARP_THEME_DIR exists if [ ! -d "${WARP_THEME_DIR}" ]; then printf "${GREEN_BOLD}✔${RESET} ${BOLD}Creating Warp Theme Directory:${RESET}${DIM} ${WARP_THEME_DIR}${RESET}\n" mkdir -p "${WARP_THEME_DIR}" fi # Check if theme file already exists if [ -f "${WARP_THEME_DIR}/${THEME_NAME}.yaml" ]; then printf "${RED_BOLD}✗${RESET} ${BOLD}Theme already exists:${RESET} ${DIM}${WARP_THEME_DIR}/${THEME_NAME}.yaml\n\n" printf "${BLACK}${BACKGROUND_LIGHT_RED} Next steps ${RESET}\n\n" printf "Delete the file to continue\n" printf "Copy and paste ${DIM}rm ${WARP_THEME_DIR}/${THEME_NAME}.yaml ${RESET}into your terminal\n" exit 1 fi touch "${WARP_THEME_DIR}/${THEME_NAME}.yaml" echo "${THEME_CONTENT}" > "${WARP_THEME_DIR}/${THEME_NAME}.yaml" printf "${GREEN_BOLD}✔${RESET} ${GREEN}Successfully installed the theme!\n\n" printf "${BLACK}${BACKGROUND_LIGHT_GREEN} Next steps ${RESET}\n\n" printf "Restart Warp and select ${GREEN_BOLD}${THEME_NAME} ${RESET}from the Theme Picker\n\n" printf "Don't know how to open the Theme Picker? ${GREEN_BOLD}https://docs.warp.dev/features/themes#how-to-access-it${RESET}\n" printf "${DIM}Enjoy your new theme!${RESET}\n"
9분 41초 부터 내가 좋아하는 루나빔
LunarVim_Install&Settings&LspInstall
Helix
hx]
Rust로 만든 에디터
vim이랑 비슷
helix 쓰기 괜찮은듯 -
https://economiceco.tistory.com/m/13097반응형'러스트Rust로_만든프로그램_IDE_Terminal_warp > Helix_text_editor' 카테고리의 다른 글
Helix_editor새로나온기능_Bracketed paste (0) 2022.11.23 kondo❤️Rust 프로젝트를 cargo run or cargo run --release를 하다보면 target에 쓰레기 많이 쌓인다. 내 하드에 이걸 다 지워준다. 50GB확보 ㅋㅋㅋ 내가 쓰레기를 많이 만들었네 ㅋㅋ (0) 2022.10.17 Helix 🧬 the Rust Powered Development Environment (0) 2022.09.28 10 Rust CLI tools❤️ for 2022 (0) 2022.09.27 한글러스트Rust강의_041⭐️Rust로 만든 에디터Helix기초_helix tutorial #rustlang #helix (0) 2022.09.23 Helix editor 22.08 released (0) 2022.09.15 Is this terminal the future?(warp terminal) (0) 2022.04.16 hx]Rust로 만든 에디터helix 쓰기 괜찮은듯 (0) 2022.04.05