提交 9ac99a1d 编写于 作者: Q quintin

🚩 triangular_flag_on_post(floaterm): alter floaterm to FTerm

上级 5e790abb
...@@ -121,7 +121,9 @@ bash install_fonts.sh ...@@ -121,7 +121,9 @@ bash install_fonts.sh
[quintinlee/neovim][1] 是 NVCode 基于 archlinux 的docker镜像,无需安装 NVCode,即可快速体验 NVCode 带来的快乐 [quintinlee/neovim][1] 是 NVCode 基于 archlinux 的docker镜像,无需安装 NVCode,即可快速体验 NVCode 带来的快乐
```shell
docker run -it quintinlee/neovim docker run -it quintinlee/neovim
```
## 4. 插件列表 ## 4. 插件列表
...@@ -141,7 +143,7 @@ docker run -it quintinlee/neovim ...@@ -141,7 +143,7 @@ docker run -it quintinlee/neovim
| diffview | https://github.com/sindrets/diffview.nvim | git diff | | diffview | https://github.com/sindrets/diffview.nvim | git diff |
| dressing | https://github.com/stevearc/dressing.nvim | 优化 tui | | dressing | https://github.com/stevearc/dressing.nvim | 优化 tui |
| filetype | https://github.com/nathom/filetype.nvim | 优化启动 | | filetype | https://github.com/nathom/filetype.nvim | 优化启动 |
| floaterm | https://github.com/doums/floaterm.nvim | 浮动终端 | | FTerm | https://github.com/numToStr/FTerm.nvim | 浮动终端 |
| git-blame-virt | https://github.com/robert-oleynik/git-blame-virt.nvim | 显示 git blame | | git-blame-virt | https://github.com/robert-oleynik/git-blame-virt.nvim | 显示 git blame |
| gitsigns | https://github.com/lewis6991/gitsigns.nvim | 显示 git 文件变更 | | gitsigns | https://github.com/lewis6991/gitsigns.nvim | 显示 git 文件变更 |
| impatient | https://github.com/lewis6991/impatient.nvim | 优化启动 | | impatient | https://github.com/lewis6991/impatient.nvim | 优化启动 |
......
require('floaterm').setup({ require'FTerm'.setup({
layout = 'center', border = 'double',
width = 0.8, dimensions = {
height = 0.8, height = 0.9,
bg_color = '#454040', width = 0.9,
},
}) })
...@@ -188,7 +188,7 @@ wk.register({ ...@@ -188,7 +188,7 @@ wk.register({
}, },
t = { t = {
name = 'floaterm', name = 'floaterm',
o = {[[<cmd>lua require'floaterm'.open({row=1})<cr>]], "open"}, o = {[[<cmd>lua require("FTerm").toggle()<cr>]], "open"},
}, },
m = { m = {
name = 'translate', name = 'translate',
......
...@@ -148,7 +148,7 @@ return require('packer').startup({ function() ...@@ -148,7 +148,7 @@ return require('packer').startup({ function()
} }
-- 浮动终端 -- 浮动终端
use 'doums/floaterm.nvim' use "numToStr/FTerm.nvim"
-- 翻译 -- 翻译
use 'uga-rosa/translate.nvim' use 'uga-rosa/translate.nvim'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册