Compare commits
10 Commits
622f5f3338
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
| 620574ea19 | |||
| f2b91c6eb0 | |||
| 9ee3a31003 | |||
| b1435388ae | |||
| 1214c4f3c8 | |||
| cbbf1ca0f9 | |||
| d6925ab9cc | |||
| 3f1a1c1375 | |||
| 7140f9cf70 | |||
| 80ba7347e1 |
@@ -11,7 +11,6 @@ return {
|
|||||||
require("mason-lspconfig").setup({
|
require("mason-lspconfig").setup({
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"clangd",
|
"clangd",
|
||||||
"cmake",
|
|
||||||
"lua_ls",
|
"lua_ls",
|
||||||
"pyright",
|
"pyright",
|
||||||
"rust_analyzer",
|
"rust_analyzer",
|
||||||
@@ -28,9 +27,6 @@ return {
|
|||||||
lspconfig.clangd.setup({
|
lspconfig.clangd.setup({
|
||||||
capabilities = capabilities
|
capabilities = capabilities
|
||||||
})
|
})
|
||||||
lspconfig.cmake.setup({
|
|
||||||
capabilities = capabilities
|
|
||||||
})
|
|
||||||
lspconfig.lua_ls.setup({
|
lspconfig.lua_ls.setup({
|
||||||
capabilities = capabilities
|
capabilities = capabilities
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ set -g @plugin 'fabioluciano/tmux-tokyo-night'
|
|||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
|
||||||
set -g @theme_variation 'moon'
|
set -g @theme_variation 'storm'
|
||||||
set -g @theme_disable_plugins 1
|
set -g @theme_disable_plugins 1
|
||||||
#set -g @theme_plugin_datetime_format '%a %d %b %Y'
|
#set -g @theme_plugin_datetime_format '%a %d %b %Y'
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ local wezterm = require("wezterm")
|
|||||||
-- This will hold the configuration
|
-- This will hold the configuration
|
||||||
local config = wezterm.config_builder()
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
config.color_scheme = 'tokyonight_storm'
|
config.color_scheme = "tokyonight_storm"
|
||||||
config.window_background_opacity = 0.95
|
config.window_background_opacity = 0.95
|
||||||
config.enable_tab_bar = false
|
config.enable_tab_bar = false
|
||||||
config.initial_cols = 205
|
config.initial_cols = 205
|
||||||
|
|||||||
@@ -3,20 +3,51 @@
|
|||||||
############### ALIASES ####################
|
############### ALIASES ####################
|
||||||
|
|
||||||
# Load bottom with the proper color scheme
|
# Load bottom with the proper color scheme
|
||||||
alias btm="btm --theme=gruvbox"
|
alias btm="btm --theme=gruvbox"
|
||||||
|
|
||||||
# Remap ls to use lsd
|
# Remap ls to use lsd
|
||||||
alias ls="lsd"
|
alias ls="lsd"
|
||||||
|
|
||||||
|
# Add alias for la to call lsd -lah
|
||||||
|
alias la="lsd -lah"
|
||||||
|
|
||||||
# Replace cat with bat
|
# Replace cat with bat
|
||||||
alias cat="bat"
|
alias cat="bat"
|
||||||
|
|
||||||
|
# Alias cd to z for zoxide
|
||||||
|
alias cd="z"
|
||||||
|
|
||||||
############### END ALIASES ###############
|
############### END ALIASES ###############
|
||||||
|
|
||||||
|
############### BEGIN EXPORTS #############
|
||||||
|
|
||||||
|
# Exporting $HOME/.local/bin for Zed
|
||||||
|
export PATH=$HOME/.local/bin:$PATH
|
||||||
|
|
||||||
|
# Export my local-progs directory to find executables
|
||||||
|
export PATH=$HOME/local-progs/:$PATH
|
||||||
|
|
||||||
|
# Pre-configure settings for zsh-vi-mode
|
||||||
|
function zvm_config() {
|
||||||
|
ZVM_CURSOR_STYLE_ENABLED=false
|
||||||
|
ZVM_VI_EDITOR=nvim
|
||||||
|
}
|
||||||
|
|
||||||
|
############### END EXPORTS ###############
|
||||||
|
|
||||||
# Add in our fzf integrations for zsh
|
# Add in our fzf integrations for zsh
|
||||||
# Comment if you don't want the fzf integration
|
# Comment if you don't want the fzf integration
|
||||||
source <(fzf --zsh)
|
source <(fzf --zsh)
|
||||||
|
|
||||||
|
# Enable vi mode for zsh
|
||||||
|
source $HOME/local-progs/zsh-vi-mode/zsh-vi-mode.plugin.zsh
|
||||||
|
|
||||||
|
# We want to make sure that autocompletions are loaded
|
||||||
|
autoload -Uz compinit && compinit
|
||||||
|
|
||||||
|
# Initialize zoxide
|
||||||
|
eval "$(zoxide init zsh)"
|
||||||
|
|
||||||
# Finally we want to use starship for our prompt
|
# Finally we want to use starship for our prompt
|
||||||
# (because rust that's why)
|
# (because rust that's why)
|
||||||
eval "$(starship init zsh)"
|
eval "$(starship init zsh)"
|
||||||
|
|||||||
Reference in New Issue
Block a user