Adopt Zed settings
This commit is contained in:
parent
9188308c44
commit
65fc2de565
@ -444,6 +444,7 @@ return {
|
|||||||
config = {
|
config = {
|
||||||
header = vim.split(logo, "\n"),
|
header = vim.split(logo, "\n"),
|
||||||
center = {
|
center = {
|
||||||
|
{{- if eq .chezmoi.os "openbsd" }}
|
||||||
{
|
{
|
||||||
action = "Telescope find_files",
|
action = "Telescope find_files",
|
||||||
desc = " Find file",
|
desc = " Find file",
|
||||||
@ -463,11 +464,7 @@ return {
|
|||||||
key = "g",
|
key = "g",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
{{- if eq .chezmoi.os "openbsd" }}
|
|
||||||
action = [[lua require("telescope.builtin").find_files({ cwd = vim.fn.stdpath("config") })]],
|
action = [[lua require("telescope.builtin").find_files({ cwd = vim.fn.stdpath("config") })]],
|
||||||
{{- else }}
|
|
||||||
action = [[lua require("lazyvim.util").telescope.config_files()()]],
|
|
||||||
{{- end }}
|
|
||||||
desc = " Config",
|
desc = " Config",
|
||||||
icon = " ",
|
icon = " ",
|
||||||
key = "c",
|
key = "c",
|
||||||
@ -485,6 +482,45 @@ return {
|
|||||||
key = "l",
|
key = "l",
|
||||||
},
|
},
|
||||||
{ action = "qa", desc = " Quit", icon = " ", key = "q" },
|
{ action = "qa", desc = " Quit", icon = " ", key = "q" },
|
||||||
|
{{- else }}
|
||||||
|
{
|
||||||
|
action = "lua LazyVim.pick()()",
|
||||||
|
desc = " Find file",
|
||||||
|
icon = " ",
|
||||||
|
key = "f",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
action = "Telescope oldfiles",
|
||||||
|
desc = " Recent files",
|
||||||
|
icon = " ",
|
||||||
|
key = "r",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
action = 'lua LazyVim.pick("live_grep")()',
|
||||||
|
desc = " Find text",
|
||||||
|
icon = " ",
|
||||||
|
key = "g",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
action = "lua LazyVim.pick.config_files()()",
|
||||||
|
desc = " Config",
|
||||||
|
icon = " ",
|
||||||
|
key = "c",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
action = "Telekasten find_notes",
|
||||||
|
desc = " Find notes",
|
||||||
|
icon = " ",
|
||||||
|
key = "n",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
action = "Lazy",
|
||||||
|
desc = " Lazy",
|
||||||
|
icon = " ",
|
||||||
|
key = "l",
|
||||||
|
},
|
||||||
|
{ action = "qa", desc = " Quit", icon = " ", key = "q" },
|
||||||
|
{{- end }}
|
||||||
},
|
},
|
||||||
footer = function()
|
footer = function()
|
||||||
local stats = require("lazy").stats()
|
local stats = require("lazy").stats()
|
||||||
@ -517,5 +553,22 @@ return {
|
|||||||
{
|
{
|
||||||
"stevearc/oil.nvim",
|
"stevearc/oil.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
|
config = function()
|
||||||
|
require("oil").setup({
|
||||||
|
default_file_explorer = true,
|
||||||
|
delete_to_trash = true,
|
||||||
|
skip_confirm_for_simple_edits = true,
|
||||||
|
view_options = {
|
||||||
|
show_hidden = true,
|
||||||
|
natural_order = true,
|
||||||
|
is_always_hidden = function(name, _)
|
||||||
|
return name == '..' or name == '.git'
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
win_options = {
|
||||||
|
wrap = true,
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -1,23 +0,0 @@
|
|||||||
// Zed settings
|
|
||||||
//
|
|
||||||
// For information on how to configure Zed, see the Zed
|
|
||||||
// documentation: https://zed.dev/docs/configuring-zed
|
|
||||||
//
|
|
||||||
// To see all of Zed's default settings without changing your
|
|
||||||
// custom settings, run the `zed: Open Default Settings` command
|
|
||||||
// from the command palette
|
|
||||||
{
|
|
||||||
"telemetry": {
|
|
||||||
"diagnostics": true,
|
|
||||||
"metrics": false
|
|
||||||
},
|
|
||||||
"vim_mode": true,
|
|
||||||
"ui_font_size": 12,
|
|
||||||
"buffer_font_family": "BrutalistMono Nerd Font",
|
|
||||||
"buffer_font_size": 12,
|
|
||||||
"theme": {
|
|
||||||
"mode": "system",
|
|
||||||
"dark": "Gruvbox Dark Hard",
|
|
||||||
"light": "Gruvbox Dark Hard"
|
|
||||||
}
|
|
||||||
}
|
|
15
dot_config/zed/settings.json.tmpl
Normal file
15
dot_config/zed/settings.json.tmpl
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"telemetry": {
|
||||||
|
"diagnostics": true,
|
||||||
|
"metrics": false
|
||||||
|
},
|
||||||
|
"vim_mode": true,
|
||||||
|
"ui_font_size": {{ .fontsize }},
|
||||||
|
"buffer_font_size": {{ .fontsize }},
|
||||||
|
"buffer_font_family": "BrutalistMono Nerd Font",
|
||||||
|
"theme": {
|
||||||
|
"mode": "system",
|
||||||
|
"dark": "Gruvbox Dark Hard",
|
||||||
|
"light": "Gruvbox Dark Hard"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user