Skip to content

Commit cee3e13

Browse files
committed
add plugin
1 parent 23f36c7 commit cee3e13

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
**/node_modules
2-
**/target
2+
**/target
3+
**/.vscode/*

22.08/A.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
public class A {
2+
public static void main(String[] args) {
3+
System.out.println("hello world!");
4+
}
5+
}
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# 插件整理
2+
今天把觉得比较有用的插件整理一下,以后要是有了新电脑也可以快速把插件给安装上。
3+
# idea插件
4+
## 1 maven helper
5+
解决maven依赖冲突的利器,可以看各个依赖的版本依赖关系和谁在生效等等。非常有用。
6+
## 2 codeglance pro
7+
右侧有个预览,类似vscode的效果。
8+
9+
![image](https://i.imgur.com/hUcHGaf.gif)
10+
11+
## 3 tabnine
12+
codota被tabnine买了,之后只能直接使用tabnine了,他提供了代码智能提示,把大家常用的写法给出提示。并且tabnine还集成了github的copilot,可以说更强大了。
13+
14+
![image](https://i.imgur.com/JA3d40w.gif)
15+
16+
# vscode插件
17+
## 1 tabnine
18+
tabnine也可以装在vscode中,并且可以在远程的gitpod中使用,非常方便。
19+
## 2 ES7+ React/Redux/React-Native snippets
20+
前端react等需要使用的插件
21+
## 3 live server
22+
能把文件serve出去的http服务器,非常方便。
23+
## 4 rust analyzer
24+
rust语言需要使用的插件

0 commit comments

Comments
 (0)