Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/nvim/init.lua
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-- bootstrap lazy.nvim, LazyVim and your plugins
require("config.lazy")
require "config.lazy"
8 changes: 4 additions & 4 deletions .config/nvim/lua/config/lazy.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
local out = vim.fn.system { "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }
if vim.v.shell_error ~= 0 then
vim.api.nvim_echo({
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
Expand All @@ -14,7 +14,7 @@ if not (vim.uv or vim.loop).fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)

require("lazy").setup({
require("lazy").setup {
spec = {
-- add LazyVim and import its plugins
{ "LazyVim/LazyVim", import = "lazyvim.plugins" },
Expand Down Expand Up @@ -50,4 +50,4 @@ require("lazy").setup({
},
},
},
})
}
2 changes: 1 addition & 1 deletion .config/nvim/lua/plugins/example.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ return {
setup = {
-- example to setup with typescript.nvim
tsserver = function(_, opts)
require("typescript").setup({ server = opts })
require("typescript").setup { server = opts }
return true
end,
-- Specify * to use this function as a fallback for any server
Expand Down
1 change: 0 additions & 1 deletion .config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ config = {
[[\b[k-z]{8,32}\b]],
},


leader = { key = "t", mods = "CTRL" },
keys = {
{ key = "t", mods = "LEADER|CTRL", action = act { SendKey = { key = "t", mods = "CTRL" } } },
Expand Down