Compare commits

...

3 commits

Author SHA1 Message Date
c3d0590fca
viv ftw 2023-05-28 16:22:33 -05:00
73953f4be9
update tmux theme 2023-05-28 16:22:30 -05:00
5dde4a2093
use nimlangserver 2023-05-28 16:22:25 -05:00
4 changed files with 15 additions and 13 deletions

View file

@ -1,13 +1,11 @@
return {
{
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- pyright will be automatically installed with mason and loaded with lspconfig
nim_langserver = {},
},
"neovim/nvim-lspconfig",
---@class PluginLspOpts
opts = {
---@type lspconfig.options
servers = {
-- pyright will be automatically installed with mason and loaded with lspconfig
nim_langserver = {},
},
},
}

View file

@ -11,3 +11,5 @@ NextSeq
Illumina
starcode
levenshtein
lentivirus
polybrene

View file

@ -50,9 +50,9 @@ set -g status-style "fg=magenta,bg=default"
set -g status-interval 2
set -g status-justify "absolute-centre"
set -g status-left "#[fg=red,bold]λ#[fg=cyan,bold] #S"
set -g status-left "#[fg=${thm_magenta},bold]λ#[fg=${thm_yellow},bold] #S"
# set -g status-left-length 60
set -g status-left-length 60
# set -g status-right '[#S]'
set -g status-right "%b %d %Y %l:%M %p"
set -g status-right-length 60
@ -60,8 +60,8 @@ set -g status-right-length 60
set -g window-status-last-style "fg=${thm_yellow}"
set -g pane-border-lines heavy
active_marker="#[fg=red,bold] "
set -g window-status-current-format "#[bg=${thm_bg}]${active_marker} #[fg=green,bold]#W"
active_marker="#[fg=${thm_cyan},bold]"
set -g window-status-current-format "#[bg=${thm_bg}]${active_marker} #[fg=${thm_red},bold]#W"
# messages
set -g message-style "fg=${thm_orange},bg=${thm_bg},align=centre"

View file

@ -40,3 +40,5 @@ alias today="date +'%Y-%m-%d'"
alias dots-drop='chezmoi forget --interactive $(chezmoi managed -p absolute | fzf)'
alias dots-add='chezmoi re-add --interactive'
alias viv-remote='python3 <(curl -fsSL gh.dayl.in/viv/viv.py)'
alias viv-dev='python3 <(curl -fsSL https://raw.githubusercontent.com/daylinmorgan/viv/dev/src/viv/viv.py)'