Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cappyzawa committed Oct 25, 2023
1 parent c2419fc commit aed90ba
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .config/github-copilot/versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"copilot.vim":"1.10.0","copilot.lua":"1.10.3"}
{"copilot.vim":"1.10.0","copilot.lua":"1.11.1"}
3 changes: 3 additions & 0 deletions .config/nvim/lua/plugins/formatting.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ return {
"stevearc/conform.nvim",
opts = function()
return {
format = {
timeout_ms = 5000,
},
formatters_by_ft = {
css = { "prettier" },
go = { "goimports" },
Expand Down
6 changes: 4 additions & 2 deletions .config/nvim/lua/plugins/ui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ return {
end,
},
{
"glepnir/dashboard-nvim",
opts = function()
"nvimdev/dashboard-nvim",
opts = function(_, opts)
local logo = [[
.d8888b. 8888888b.8888888888P888 888
d88P Y88b888 Y88b d88P 888 o 888
Expand All @@ -39,6 +39,8 @@ d88P Y88b888 Y88b d88P 888 o 888
Y88b d88P888 d88P 8888P Y8888
"Y8888P" 888 d8888888888888P Y888
]]
opts.config.header = vim.split(logo, "\n")
return opts
end,
},
{
Expand Down
4 changes: 4 additions & 0 deletions .zsh/60_lang.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,7 @@ fi
if ! has "rustup"; then
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
fi

if has "fzf"; then
export FZF_DEFAULT_OPTS="--reverse"
fi

0 comments on commit aed90ba

Please sign in to comment.