新的开发环境
Zane Lv4

新的开发环境

来到上海工作以后,不像之前公司有自己的 IDE ,所有的开发环境只需要一个 Windows 的开发包就能全部解决。并且在这里更多的使用的是 Linux 的环境上开发,所有根据这里同事的使用习惯(保持队形),搭建了一套我自己的开发环境。

所有的安装过程,就不再记录了这些内容都是重复的,只记录一些比较大的或者特殊的地方。

在大学的时候其实一直想用 Vim 进行开发,毕竟常言道“装逼是第一生产力”,但是工作以后因为系统的特殊性需要使用公司自己的 IDE 环境。这次大家都用了 vi 进行开发,反倒没办法装逼了,不过也没关系也算是一个我一直想用的编辑器工具。

Vim

虽然但是,我还是采用了开箱即用的「LazyVim」,只添加了一些感兴趣的插件,其他的都是原汁原味的“Lazy”。

Kitty

Kitty 是一款拥有 GPU 加速的终端 GUI,并且很多快捷键都是通用的[Ctrl + Shift + xxx]的形式,不过也是做了一些客制化修改,比如启动新的 windows 或 tab 时都是从现有终端的目录下启动,并且因为是 hhkb 键盘阵列,不太方便按 F 键,将全屏窗口进行了更改。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# windows management
map ctrl+shift+enter launch --type=window --cwd=current
map ctrl+shift+t launch --type=tab --cwd=current
map ctrl+shift+n new_os_window_with_cwd

map alt+1 goto_tab 1
map alt+2 goto_tab 2
map alt+3 goto_tab 3
map alt+4 goto_tab 4
map alt+5 goto_tab 5
map alt+6 goto_tab 6

map ctrl+shift+0 toggle_maximized
map ctrl+shift+alt+0 toggle_fullscreen

# color
background_opacity 0.83

不过后面因为要使用虚拟机,觉得 Vmware 的窗口很宽比较占用空间,就是用 Windows Terminal + ssh 的形式。

Windows Terminal

在使用了一段时间的 vscode + ssh 虚拟机的环境后,总觉得没有 tmux + vim 很不优雅,于是使用了 Windows Terminal + ssh 虚拟机的环境,并且 windows terminal 还支持使用 git + zsh 的搭配,也算是在 windows 尽可能的还原 linux shell。

使用 lazyvim 有很多终端的图标需要在终端显示,Windows terminal 能更换文本显示的字体就很方便。我采用的是「NerdFont」的 Jetbrains mono 字体,能够显示图标也和 Jetbrains 全家桶的字体一样。

Tmux

因为使用了 WIndows Terminal 那就只能在终端复用器上下功夫了,不然使用终端多个 ssh 会话管理起来是会崩溃的。

刚用时候也是被 tmux 这蹩脚阴间的配置和快捷键劝退了,需要极度的客制化。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -- general
set-option default-path "$PWD"

setw -g xterm-keys on
set -s escape-time 0
set -sg repeat-time 300
set -s focus-events on
set -g mouse on
set -sg exit-empty on

set -q -g status-utf8 on
setw -q -g utf8 on

set -g visual-activity off
setw -g monitor-activity off
setw -g monitor-bell off

set -g history-limit 10000

set-option -g base-index 1
set-option -g renumber-windows on



# -- prefix
unbind C-b
set -g prefix 'C-Space'

# create session
bind C-c new-session

# window management
bind -n M-o new-window -c "#{pane_current_path}"
bind -n M-O break-pane
bind -n M-Q kill-pane

# -- windows manage
unbind n
unbind p
unbind 1
unbind 2
unbind 3
unbind 4
unbind 5
unbind 6
unbind 7
unbind 8
unbind 9
unbind 0
bind -r C-p previous-window
bind -r C-n next-window

bind -n M-1 select-window -t 1
bind -n M-2 select-window -t 2
bind -n M-3 select-window -t 3
bind -n M-4 select-window -t 4
bind -n M-5 select-window -t 5
bind -n M-6 select-window -t 6
bind -n M-7 select-window -t 8
bind -n M-8 select-window -t 8
bind -n M-9 select-window -t 9


# -- panes manage
bind k split-window -vb -c "#{pane_current_path}"
bind j split-window -v -c "#{pane_current_path}"
bind h split-window -hb -c "#{pane_current_path}"
bind l split-window -h -c "#{pane_current_path}"

bind -n M-! join-pane -t :1
bind -n M-@ join-pane -t :2
bind -n 'M-#' join-pane -t :3
bind -n 'M-$' join-pane -t :4
bind -n M-% join-pane -t :5
bind -n M-^ join-pane -t :6
bind -n M-& join-pane -t :7
bind -n M-* join-pane -t :8
bind -n M-( join-pane -t :9

bind -r H resize-pane -L 3
bind -r J resize-pane -D 3
bind -r K resize-pane -U 3
bind -r L resize-pane -R 3

bind -n M-h select-pane -L
bind -n M-j select-pane -D
bind -n M-k select-pane -U
bind -n M-l select-pane -R

bind > swap-pane -D
bind < swap-pane -U

# -- code mode
bind -n M-v copy-mode
setw -g mode-keys vi

其实主要是一些 panes 和 windows 的管理,以及 copy 模式下的配置这些。

总结

简单记录一下我现在使用的开发工具有哪些,over。

由 Hexo 驱动 & 主题 Keep