Compare commits

..

No commits in common. "87c8949ec307d1ccd7b7aaf4356e0279b04687f3" and "768e879e222448acb4e474b2fd52206a93d9fe1d" have entirely different histories.

7 changed files with 22 additions and 1810 deletions

View File

@ -1,6 +1,5 @@
{{- $name := promptStringOnce . "name" "請輸入您的姓名" -}}
{{- $email := promptStringOnce . "email" "輸入您的Email地址" -}}
{{- $isServer := promptBoolOnce . "isServer" "Does this machine is Server" -}}
{{- $hasGUI := promptBoolOnce . "hasGUI" "Does this machine have a GUI" -}}
{{- $enableYcm := promptBoolOnce . "enableYcm" "是否要啟用Vim YCM compatible功能會佔用2.7GB" -}}
sourceDir = "~/.local/share/chezmoi"
@ -8,6 +7,5 @@ sourceDir = "~/.local/share/chezmoi"
[data]
name = {{ $name | quote }}
email = {{ $email | quote }}
serverStyle = {{ $isServer }}
noGUI = {{ not $hasGUI }}
enableYcm = {{ $enableYcm }}

File diff suppressed because it is too large Load Diff

View File

@ -255,11 +255,6 @@ To shutdown the Watchman server, run:
watchman shutdown-server
```
或是清除所有的watch
```
watchman watch-del-all
```
相關工具參考連結
--------------------------------------------------------------------------------
* <https://www.ditig.com/256-colors-cheat-sheet>

View File

@ -1,5 +1,4 @@
return {
{
"kdheepak/lazygit.nvim",
lazy = true,
cmd = {
@ -23,5 +22,4 @@ return {
config = function()
require("telescope").load_extension("lazygit")
end,
},
}

View File

@ -1,28 +0,0 @@
return {
{ "nvzone/volt" , lazy = true },
{
"nvzone/menu",
dependencies = { "MunifTanjim/nui.nvim" },
event = "VeryLazy",
config = function()
-- Keyboard users
vim.keymap.set("n", "<C-t>", function()
require("menu").open("default")
end, {})
-- mouse users + nvimtree users!
vim.keymap.set({ "n", "v" }, "<RightMouse>", function()
require('menu.utils').delete_old_menus()
vim.cmd.exec '"normal! \\<RightMouse>"'
-- clicked buf
local buf = vim.api.nvim_win_get_buf(vim.fn.getmousepos().winid)
local options = vim.bo[buf].ft == "neo-tree" and "neo-tree" or "default"
require("menu").open(options, { mouse = true })
end, {})
end,
},
}

View File

@ -34,7 +34,6 @@
os_icon # os identifier
context # user@hostname
dir # current directory
dir_writable
vcs # git status
# prompt_char # prompt symbol
)

View File

@ -1,5 +0,0 @@
{{- if .serverStyle -}}
{{- include ".p10k_server.zsh" -}}
{{- else -}}
{{- include ".p10k.zsh" -}}
{{- end -}}