Compare commits
3 commits
9e89518d31
...
1584784949
| Author | SHA1 | Date | |
|---|---|---|---|
| 1584784949 | |||
| b2f713c8d3 | |||
| 3b6d9b28a2 |
4 changed files with 38 additions and 4 deletions
|
|
@ -4,16 +4,16 @@
|
|||
"indent-o-matic": { "branch": "master", "commit": "4d11e98f523d3c4500b1dc33f0d1a248a4f69719" },
|
||||
"lualine.nvim": { "branch": "master", "commit": "15884cee63a8c205334ab13ab1c891cd4d27101a" },
|
||||
"mason-lspconfig.nvim": { "branch": "main", "commit": "d39a75bbce4b8aad5d627191ea915179c77c100f" },
|
||||
"mason.nvim": { "branch": "main", "commit": "7c7318e8bae7e3536ef6b9e86b9e38e74f2e125e" },
|
||||
"mason.nvim": { "branch": "main", "commit": "888d6ee499d8089a3a4be4309d239d6be1c1e6c0" },
|
||||
"neovim": { "branch": "main", "commit": "14b371fb783a8cfdade04544fb782f0bb6f7c904" },
|
||||
"nvim-autopairs": { "branch": "master", "commit": "4d74e75913832866aa7de35e4202463ddf6efd1b" },
|
||||
"nvim-cmp": { "branch": "main", "commit": "b5311ab3ed9c846b585c0c15b7559be131ec4be9" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "61e5109c8cf24807e4ae29813a3a82b31821dd45" },
|
||||
"nvim-lspconfig": { "branch": "master", "commit": "ac1dfbe3b60e5e23a2cff90e3bd6a3bc88031a57" },
|
||||
"nvim-tree.lua": { "branch": "master", "commit": "c7639482a1598f4756798df1b2d72f79fe5bb34f" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "cfc6f2c117aaaa82f19bcce44deec2c194d900ab" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "f1420728f59843eb2ef084406b3d0201a0a0932d" },
|
||||
"nvim-web-devicons": { "branch": "master", "commit": "1fb58cca9aebbc4fd32b086cb413548ce132c127" },
|
||||
"plenary.nvim": { "branch": "master", "commit": "857c5ac632080dba10aae49dba902ce3abf91b35" },
|
||||
"schemastore.nvim": { "branch": "main", "commit": "df87d16fc4ea7c2c67cfc00b513861738693fe07" },
|
||||
"schemastore.nvim": { "branch": "main", "commit": "ba7bad63cb96dae5a82e48310beada18e8eeafe5" },
|
||||
"telescope.nvim": { "branch": "master", "commit": "a0bbec21143c7bc5f8bb02e0005fa0b982edc026" },
|
||||
"trouble.nvim": { "branch": "main", "commit": "40c5317a6e90fe3393f07b0fee580d9e93a216b4" },
|
||||
"undotree": { "branch": "master", "commit": "b951b87b46c34356d44aa71886aecf9dd7f5788a" },
|
||||
|
|
|
|||
3
stowers/wezterm/config.sh
Normal file
3
stowers/wezterm/config.sh
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
COMMAND_DEPS=("bash")
|
||||
19
stowers/wezterm/dot-wezterm.lua
Normal file
19
stowers/wezterm/dot-wezterm.lua
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
local wezterm = require("wezterm")
|
||||
|
||||
return {
|
||||
color_scheme = "gruvbox_material_dark_hard",
|
||||
color_schemes = {
|
||||
["gruvbox_material_dark_hard"] = {
|
||||
foreground = "#D4BE98",
|
||||
background = "#1D2021",
|
||||
cursor_bg = "#D4BE98",
|
||||
cursor_border = "#D4BE98",
|
||||
cursor_fg = "#1D2021",
|
||||
selection_bg = "#D4BE98",
|
||||
selection_fg = "#3C3836",
|
||||
|
||||
ansi = { "#1d2021", "#ea6962", "#a9b665", "#d8a657", "#7daea3", "#d3869b", "#89b482", "#d4be98" },
|
||||
brights = { "#eddeb5", "#ea6962", "#a9b665", "#d8a657", "#7daea3", "#d3869b", "#89b482", "#d4be98" },
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
@ -13,6 +13,18 @@ export PATH="${PATH}:${HOME}/.local/bin"
|
|||
# export EDITOR='mvim'
|
||||
# fi
|
||||
|
||||
HISTFILE=~/.histfile
|
||||
HISTSIZE=1000
|
||||
SAVEHIST=1000
|
||||
setopt notify
|
||||
unsetopt autocd beep nomatch
|
||||
bindkey -v
|
||||
|
||||
zstyle :compinstall filename "${HOME}/.zshrc"
|
||||
|
||||
autoload -Uz compinit
|
||||
compinit
|
||||
|
||||
# Read man page.
|
||||
zstyle ':completion:*:manuals' separate-sections true
|
||||
zstyle ':completion:*:manuals.*' insert-sections true
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue