diff --git a/.config/aliasrc b/.config/aliasrc index 121a794..87e663b 100644 --- a/.config/aliasrc +++ b/.config/aliasrc @@ -7,7 +7,7 @@ alias ll="ls -G -alh" alias vim='nvim' alias grep='grep --color=auto' alias vz="nvim ${ZDOTDIR}/.zshrc && source ${ZDOTDIR}/.zshrc" -alias va="nvim ~/.config/aliasrc && source ${ZDOTDIR}.zshrc" +alias va="nvim ~/.config/aliasrc && source ${ZDOTDIR}/.zshrc" alias sz='source ~/.zshrc' alias c="xclip -selection clipboard" alias v="xclip -selection clipboard -o" @@ -29,7 +29,6 @@ alias paratest="docker compose exec fpm ./test" alias fresh="docker compose exec fpm php artisan migrate:fresh --seed" alias ts="~/.local/bin/tmux-sessionizer" -alias tmux="tmux attach-session || tmux" # Clipboard alias c="xclip -selection clipboard" diff --git a/.config/nvim/lua/core/autocmd.lua b/.config/nvim/lua/core/autocmd.lua index f6b69f3..0ebc951 100644 --- a/.config/nvim/lua/core/autocmd.lua +++ b/.config/nvim/lua/core/autocmd.lua @@ -28,7 +28,7 @@ local aucmd_dict = { FileType = { { -- Set tabstop to 2 for Dart, Vue, JavaScript, TypeScript, and JSON files - pattern = "dart,vue,javascript,typescript,typescriptreact,json,markdown", + pattern = "html,dart,vue,javascript,typescript,typescriptreact,json,markdown,css,sass", callback = function() vim.opt_local.tabstop = 2 vim.opt_local.softtabstop = 2 diff --git a/.config/nvim/lua/plugins/lspconfig.lua b/.config/nvim/lua/plugins/lspconfig.lua index bb914df..f1ad61c 100644 --- a/.config/nvim/lua/plugins/lspconfig.lua +++ b/.config/nvim/lua/plugins/lspconfig.lua @@ -145,6 +145,15 @@ return { return exepath('python3') or exepath('python') or 'python' end + local function organize_imports() + local params = { + command = "_typescript.organizeImports", + arguments = {vim.api.nvim_buf_get_name(0)}, + title = "" + } + vim.lsp.buf.execute_command(params) + end + local servers = { ts_ls = { init_options = { @@ -162,6 +171,12 @@ return { "vue", "typescriptreact", }, + commands = { + OrganizeImports = { + organize_imports, + description = "Organize Imports" + } + } }, volar = { diff --git a/.local/bin/brightness-down b/.local/bin/brightness-down index 1149655..69c6714 100755 --- a/.local/bin/brightness-down +++ b/.local/bin/brightness-down @@ -4,7 +4,7 @@ set -e # Define the backlight device BACKLIGHT_DEVICE="/sys/class/backlight/intel_backlight" -DECREMENT=300 # Adjust this to the value you want to increase +DECREMENT=5000 # Adjust this to the value you want to increase # Get the current and max brightness current_brightness=$(cat "$BACKLIGHT_DEVICE/brightness") diff --git a/.local/bin/brightness-up b/.local/bin/brightness-up index 6d9920e..3c0ef9d 100755 --- a/.local/bin/brightness-up +++ b/.local/bin/brightness-up @@ -4,7 +4,7 @@ set -e # Define the backlight device BACKLIGHT_DEVICE="/sys/class/backlight/intel_backlight" -INCREMENT=300 # Adjust this to the value you want to increase +INCREMENT=5000 # Adjust this to the value you want to increase # Get the current and max brightness current_brightness=$(cat "$BACKLIGHT_DEVICE/brightness")