1. 全局修改 maven 源为阿里云

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                           https://maven.apache.org/xsd/settings-1.0.0.xsd">
    <localRepository/>
    <interactiveMode/>
    <usePluginRegistry/>
    <offline/>
    <pluginGroups/>
    <servers/>
    <mirrors>
        <mirror>
            <id>alimaven</id>
            <name>aliyun maven</name>
            <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
            <mirrorOf>central</mirrorOf>
        </mirror>
    </mirrors>
    <proxies/>
    <profiles/>
    <activeProfiles/>
</settings>

2. 注释不显示在行首,并保持空格

进入 Settings -> Code Style -> Java ,在右边选择 “Code Generation” Tab,然后找到 Comment Code 那块,把
Line comment at first column
Block comment at first column
去掉前面两个的复选框
IDEA 个人配置记录

3. 字体

修改编辑器字体为 Source Code Pro

IDEA 个人配置记录

4. 下载 vim 插件

IDEA 个人配置记录

" 配合 IdeaVimExtension 插件, 回到 insert 模式时恢复输入法
" Windows需要开启英语美国键盘
set keep-english-in-normal-and-restore-in-insert
imap jj <ESC>
set so=5
set vb
set surround

" 设置光标键跨行
set whichwrap+=<,>,h,l
" 设置<ESC>键响应时间
set ttimeoutlen=0
" 允许光标出现在最后一个字符的后面
set virtualedit=block,onemore
" 把内容复制到系统剪贴板
set clipboard+=unnamed

eclipse 使用 vrapper

help 中的 Eclipse Marketplace 中 搜索 vrapper
IDEA 个人配置记录
安装好后的配置
C:\Users\Administrator 目录下 _vrapperrc

:imap jj <ESC>
:imap <A-h> <C-o>h
:imap <A-j> <C-o>j
:imap <A-k> <C-o>k
:imap <A-l> <C-o>l

set autoindent
set ignorecase
set smartcase

5. 下载热启动插件 JRebel

服务器地址监听服务器地址:
http://jrebel.cicoding.cn

GUID生成器:
http://jrebel.cicoding.cn/guid

生成的如下:
http://jrebel.cicoding.cn/FF2DCA8-D583-6741-B9C6-247E5C1492D9

6. 经常忘的快捷键

ctrl+alt+[ 上一个项目

ctrl+alt+] 下一个项目

相关文章:

  • 2021-06-25
  • 2021-05-28
  • 2022-12-23
  • 2021-05-16
  • 2021-11-18
  • 2021-11-21
  • 2021-08-05
猜你喜欢
  • 2021-09-24
  • 2022-02-18
  • 2022-01-09
  • 2021-07-09
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案