Compare commits
No commits in common. "77540d4eb54a4bf4811d9226b1f009f2f75fc268" and "8dfa99fc46696ee3e7661f3e8354099494d2d496" have entirely different histories.
77540d4eb5
...
8dfa99fc46
@ -167,7 +167,7 @@ pacman_nogui = [
|
|||||||
]
|
]
|
||||||
pacman_gui = [
|
pacman_gui = [
|
||||||
'gvim',
|
'gvim',
|
||||||
'foot',
|
'neovide',
|
||||||
]
|
]
|
||||||
|
|
||||||
aur = [
|
aur = [
|
||||||
@ -175,7 +175,6 @@ aur = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
aur_gui = [
|
aur_gui = [
|
||||||
'glrnvim',
|
|
||||||
'alacritty-sixel-git',
|
'alacritty-sixel-git',
|
||||||
'winscp',
|
'winscp',
|
||||||
]
|
]
|
||||||
|
@ -1,50 +0,0 @@
|
|||||||
# vim:fileencoding=utf-8:ft=yaml
|
|
||||||
|
|
||||||
# Choose the backend terminal to run neovim in.
|
|
||||||
# Current supported terminals: alacritty, urxvt, kitty, wezterm, foot.
|
|
||||||
# backend: urxvt
|
|
||||||
# backend: alacritty
|
|
||||||
|
|
||||||
# Path to backend executable file
|
|
||||||
# NOTE: requires a backend key
|
|
||||||
# NOTE: old key exe_path is now deprecated but can still be used
|
|
||||||
#term_exe_path: /path/to/urxvt
|
|
||||||
|
|
||||||
# Specify the Neovim executable path.
|
|
||||||
# NOTE: nvim will be used if not specified
|
|
||||||
# NOTE: For windows, e.g.: C:\tools\neovim\Neovim\bin\nvim.exe
|
|
||||||
#nvim_exe_path: /path/to/nvim
|
|
||||||
|
|
||||||
# The fonts to be used. Multi fonts can be supplied.
|
|
||||||
# The first one will be set as the major font. Others will be set as
|
|
||||||
# fallback fonts according to the given orders if possible.
|
|
||||||
# NOTE: Not all backends support fallback font.
|
|
||||||
fonts:
|
|
||||||
- MesloLGS NF
|
|
||||||
- Source Code Pro
|
|
||||||
- monofur
|
|
||||||
|
|
||||||
# The font size to be used.
|
|
||||||
#
|
|
||||||
font_size: 10
|
|
||||||
|
|
||||||
# Set to true if the terminal's default configuration should be loaded
|
|
||||||
# first. Other glrnvim configurations will overwrite the terminal settings
|
|
||||||
# if they are set in config.yml.
|
|
||||||
# urxvt is not impacted by this setting. It always load resources according
|
|
||||||
# to the defined orders.
|
|
||||||
#load_term_conf: false
|
|
||||||
|
|
||||||
# Configuration file for the selected terminal.
|
|
||||||
# NOTE:This option is not supported by urxvt.
|
|
||||||
# If this option is specified, the terminal's default config won't be loaded
|
|
||||||
# when 'load_term_conf' is true.
|
|
||||||
#term_config_path: /path/to/config.toml
|
|
||||||
|
|
||||||
# Set to true to redirect the backend terminal error output to null device.
|
|
||||||
# Avoid annoying harmless terminal error logs being printed all the time.
|
|
||||||
#omit_term_stderr: false
|
|
||||||
|
|
||||||
backend: foot
|
|
||||||
load_term_conf: true
|
|
||||||
term_config_path: {{ joinPath .chezmoi.homeDir ".config/glrnvim/foot.ini" }}
|
|
@ -1,3 +0,0 @@
|
|||||||
[main]
|
|
||||||
font=MesloLGS NF:size=10, Noto Color Emoji:size=10,Source Code Pro:size=10,monofur:size=10,
|
|
||||||
initial-window-size-chars=220x60
|
|
@ -507,12 +507,10 @@ return {
|
|||||||
-- 自動命令:啟動時自動顯示 Neo-tree
|
-- 自動命令:啟動時自動顯示 Neo-tree
|
||||||
vim.api.nvim_create_autocmd("VimEnter", {
|
vim.api.nvim_create_autocmd("VimEnter", {
|
||||||
callback = function()
|
callback = function()
|
||||||
vim.defer_fn(function()
|
if vim.fn.winheight(0) > 20 and vim.fn.winwidth(0) > 140 then
|
||||||
if vim.fn.winheight(0) > 20 and vim.fn.winwidth(0) > 140 then
|
vim.cmd("Neotree show")
|
||||||
vim.cmd("Neotree show")
|
vim.cmd("Neotree reveal")
|
||||||
vim.cmd("Neotree reveal")
|
end
|
||||||
end
|
|
||||||
end, 0)
|
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ M.lsp_servers = {
|
|||||||
has_go and "gopls" or nil, -- Go
|
has_go and "gopls" or nil, -- Go
|
||||||
"html", -- HTML
|
"html", -- HTML
|
||||||
"cssls", -- CSS
|
"cssls", -- CSS
|
||||||
-- "vue-language-server", -- Vue3
|
"vue-language-server", -- Vue3
|
||||||
-- "ts_ls", -- TypeScript,目前暫時不需要,先註解掉
|
-- "ts_ls", -- TypeScript,目前暫時不需要,先註解掉
|
||||||
"marksman", -- Markdown
|
"marksman", -- Markdown
|
||||||
"yamlls", -- YAML
|
"yamlls", -- YAML
|
||||||
|
Loading…
x
Reference in New Issue
Block a user