IDEA 个人配置记录

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
去掉前面两个的复选框
注释不显示在行首

3. 字体

修改编辑器字体为 Source Code Pro

编辑器字体

4. 下载 vim 插件

开启配置

" 配合 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

安装好后的配置
C:UsersAdministrator 目录下 _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

JRebel配置


本文版权归作者和博客园共有,欢迎转载。但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利!

作者:刘呵呵

QQ:352887191

出处:http://www.cnblogs.com/liuyishi/

原文地址:https://www.cnblogs.com/liuyishi/p/15351142.html