Front-end MacBookPro development environment construction (IDEA/webstorm)

1. Installation of command line tool iterm2

https://iterm2.com/

2. node and nvm installation

https://blog.csdn.net/s18438610353/article/details/102851932

3. webstorm2022 theme configuration

jetbrainsThe themes that come with the series are not good-looking enough. Generally, I prefer to Material
install these two plug-ins. It should be noted that Material Theme UIsome functions have begun to be charged, but the default version of the free version is enough for my daily development, and the latest version does not have icon beautification. , you need to install Atom Material Iconsthis plug-in to supplement
Insert image description here
it. The effect after installation is as follows:
Insert image description here

4.vim configuration

vim ~/.vimrc

" Configuration file for vim
set modelines=0		" CVE-2007-2438

" Normally we use vim-extensions. If you want true vi-compatibility
" remove change the following statements
set nocompatible	" Use Vim defaults instead of 100% vi compatibility
set backspace=2		" more powerful backspacing

set mouse=a
set fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1

" Don't write backup file if vim is being called by "crontab -e"
au BufWrite /private/tmp/crontab.* set nowritebackup nobackup
" Don't write backup file if vim is being called by "chpass"
au BufWrite /private/etc/pw.* set nowritebackup nobackup

let skip_defaults_vim=1
syntax on
set nu!

Supongo que te gusta

Origin blog.csdn.net/s18438610353/article/details/127489125
Recomendado
Clasificación