✏️ lualine lualine 插件可以提供类似的效果,在编辑器上提供一些信息提示,例如 Git 状态,文本编码等,下图是 Github 上的效果。 如何安装可以直接看nvim-lualine/lualine.nvim上介绍,不多赘述。同样在 plugins-configs 下建立相关的配置文件 lualine.lua,通过pcall方式引入,使用lualine.setup({})引入插件,最...
require'nvim-tree'.setup { -- 关闭文件时自动关闭 auto_close = true, -- 不显示 git 状态图标 git = { enable = false } } nvim-tree 有很多配置项,但我觉得默认已经很完美了。 这里使用了 nvim-tree.lua 的默认配置,我只把 git 状态图标关闭了,打开自动关闭 nvim-tree.nvim 主页有更多详细设置...
常见的 IDE,在窗口左边都有一个 tab,是专门用来管理当前目录下的文件结构,高度集成的一些 IDE 会显示 git,信息,是否保存等,所以我觉得这个是必备的插件之一。 优点: 自动更新 文件类型图标 Git 整合 诊断集成:LSP 和 COC (实时)过滤 剪切、复制、粘贴、重命名、删除、创建 高度可定制 我在使用 nvim-tree 之...
Git integration Diagnostics integration: LSP and COC (Live) filtering Cut, copy, paste, rename, delete, create Highly customisable Take a look at the wiki for Showcases, Tips, Recipes and more. Questions and general support: Discussions Requirements neovim >=0.9.0 nvim-web-devicons is optional...
git config --global user.name userName git config --global user.email userEmail 分支7 标签9 Amaan Qureshifix(firrtl): adapt to scanner rewrite19385832年前 4114 次提交 提交 .github fix(dart): update indents from upstream (#4924) 2年前 ...
setup { disable_netrw = true, hijack_netrw = true, open_on_setup = true, auto_reload_on_write = true, hijack_cursor = false, filters = { dotfiles = true }, git = { enable = true, ignore = true, timeout = 500, }, view = { adaptive_size = true, hide_root_folder = false,...
Git integration Diagnostics integration: LSP and COC (Live) filtering Cut, copy, paste, rename, delete, create Highly customisable Take a look at thewikifor Showcases, Tips, Recipes and more. Questions and general support:Discussions Requirements ...
-- Git Icon NvimTreeGitDeletedIcon = "Statement", NvimTreeGitDirtyIcon = "Statement", NvimTreeGitIgnoredIcon = "Comment", NvimTreeGitMergeIcon = "Constant", NvimTreeGitNewIcon = "PreProc", NvimTreeGitRenamedIcon = "PreProc", NvimTreeGitStagedIcon = "Constant", -- ...
那些技巧很有用。在多个文件中我们介绍了使用vim自带的 :grep命令进行搜索,使用quickfix 列表进行跳转,但是比起其他代码编辑器来说,总归有那么一些繁琐光是输入参数都已经很麻烦了,我想要像其他代码编辑器那样直接输入内容它就能基于工程来进行匹配。本篇文章我们将要来对它进行优化,达到这一目的。
下面讲到的MySQL安装都是以免费开源的社区版为基础。打开MySQL数据库官网的下载地址http://dev.mysql.com...