Skip to content

Commit

Permalink
Introduce wezterm-types
Browse files Browse the repository at this point in the history
  • Loading branch information
mono0x committed Aug 15, 2024
1 parent 8afd205 commit 3a12cf8
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "third_party/neodev.nvim"]
path = third_party/neodev.nvim
url = https://github.com/folke/neodev.nvim
[submodule "third_party/wezterm-types"]
path = third_party/wezterm-types
url = https://github.com/justinsgithub/wezterm-types
13 changes: 12 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@
"third_party/neodev.nvim/types/stable/uv.lua",
"third_party/neodev.nvim/types/stable/vim.fn.1.lua",
"third_party/neodev.nvim/types/stable/vim.fn.lua",
"third_party/neodev.nvim/types/stable/vim.lua"
"third_party/neodev.nvim/types/stable/vim.lua",
"third_party/wezterm-types/types/init.lua",
"third_party/wezterm-types/types/config/init.lua",
"third_party/wezterm-types/types/enum/init.lua",
"third_party/wezterm-types/types/events/init.lua",
"third_party/wezterm-types/types/objects/init.lua",
"third_party/wezterm-types/types/wezterm/init.lua",
"third_party/wezterm-types/types/wezterm/color/init.lua",
"third_party/wezterm-types/types/wezterm/gui/init.lua",
"third_party/wezterm-types/types/wezterm/mux/init.lua",
"third_party/wezterm-types/types/wezterm/procinfo/init.lua",
"third_party/wezterm-types/types/wezterm/time/init.lua"
]
}
3 changes: 2 additions & 1 deletion src/dot_config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---@type Wezterm
local wezterm = require 'wezterm'
local act = wezterm.action

local is_windows = wezterm.target_triple:find('windows')
local is_darwin = wezterm.target_triple:find('darwin')

local config = {}
local config = wezterm.config_builder()

-- Preferences
config.check_for_updates = false
Expand Down
1 change: 1 addition & 0 deletions third_party/wezterm-types
Submodule wezterm-types added at 151875

0 comments on commit 3a12cf8

Please sign in to comment.