Compare commits

..

No commits in common. "fa94c7d878d8461b4911662ea953d34ec0b17cb9" and "f5d2da28ef0f89e7b1ed963a20525e8349cc3593" have entirely different histories.

7 changed files with 6 additions and 22 deletions

4
nvimrc
View File

@ -9,9 +9,6 @@ filetype plugin indent on
let mapleader=',' let mapleader=','
" mise setup
lua vim.env.PATH = vim.env.HOME .. "/.local/share/mise/shims:" .. vim.env.PATH
" netrw " netrw
let g:netrw_banner = 0 let g:netrw_banner = 0
let g:netrw_liststyle = 1 let g:netrw_liststyle = 1
@ -275,7 +272,6 @@ packadd! rust.vim " https://github.com/rust-lang/rust.vim.git
packadd! vim-commentary " https://github.com/tpope/vim-commentary.git packadd! vim-commentary " https://github.com/tpope/vim-commentary.git
packadd! vim-rails " https://github.com/tpope/vim-rails.git packadd! vim-rails " https://github.com/tpope/vim-rails.git
packadd! vim-jsx-pretty " https://github.com/MaxMEllon/vim-jsx-pretty.git packadd! vim-jsx-pretty " https://github.com/MaxMEllon/vim-jsx-pretty.git
packadd! plenary.nvim " https://github.com/nvim-lua/plenary.nvim.git
" Requires both fzf.vim plugin to be manually installed: " Requires both fzf.vim plugin to be manually installed:
" https://github.com/junegunn/fzf/blob/master/plugin/fzf.vim " https://github.com/junegunn/fzf/blob/master/plugin/fzf.vim

View File

@ -2,7 +2,7 @@
# #
# jira - jump to a Jira ticket in the browser, based on Git branch name convention. # jira - jump to a Jira ticket in the browser, based on Git branch name convention.
set -e -o pipefail set -e
if [ -z "$JIRADOMAIN" ]; then if [ -z "$JIRADOMAIN" ]; then
# shellcheck disable=SC2016 # shellcheck disable=SC2016

View File

@ -105,12 +105,6 @@ nvim_lsp.rust_analyzer.setup({
nvim_lsp.solargraph.setup({ nvim_lsp.solargraph.setup({
on_attach = on_attach, on_attach = on_attach,
settings = {
solargraph = {
autoformat = false,
formatting = false,
},
},
}) })
-- Typescript -- Typescript

View File

@ -40,11 +40,10 @@ require("nvim-treesitter.configs").setup({
["ak"] = "@keyed_element.outer", ["ak"] = "@keyed_element.outer",
["iv"] = "@keyed_element.inner", ["iv"] = "@keyed_element.inner",
["av"] = "@keyed_element.inner", ["av"] = "@keyed_element.inner",
["at"] = "@composite_literal",
["ia"] = "@parameter.inner", ["ia"] = "@parameter.inner",
["aa"] = "@parameter.outer", ["aa"] = "@parameter.outer",
["ac"] = "@comment.outer", ["ac"] = "@comment.outer",
["as"] = "@statement.outer", ["at"] = "@statement.outer",
["ar"] = "@return", ["ar"] = "@return",
["af"] = "@function.outer", ["af"] = "@function.outer",
["if"] = "@function.inner", ["if"] = "@function.inner",

View File

@ -7,5 +7,3 @@
(keyed_element (_) . (_) @keyed_element.inner) @keyed_element.outer (keyed_element (_) . (_) @keyed_element.inner) @keyed_element.outer
(field_declaration type: (_) @keyed_element.inner) @keyed_element.outer (field_declaration type: (_) @keyed_element.inner) @keyed_element.outer
(parameter_declaration type: (_) @keyed_element.inner) @keyed_element.outer (parameter_declaration type: (_) @keyed_element.inner) @keyed_element.outer
(composite_literal (_)) @composite_literal

4
zshenv
View File

@ -10,6 +10,10 @@ export BROWSER=firefox
# ZSH: # ZSH:
export ZDOTDIR="$XDG_CONFIG_HOME/zsh" export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
export HISTFILE="$ZDOTDIR/.zsh_history"
export HISTSIZE=100000
export SAVEHIST=100000
export HISTTIMEFORMAT="[%F %T] "
# UI # UI
# `vivid generate molokai` # `vivid generate molokai`

7
zshrc
View File

@ -1,13 +1,6 @@
# $HOME/.config/zsh/.zshrc # $HOME/.config/zsh/.zshrc
# Note: Install zsh-completions package # Note: Install zsh-completions package
# Moved from zshenv because they were being inexplicably overwritten or ignored
# on Macos:
export HISTFILE="$ZDOTDIR/.zsh_history"
export HISTSIZE=100000
export SAVEHIST=100000
export HISTTIMEFORMAT="[%F %T] "
setopt hist_find_no_dups setopt hist_find_no_dups
setopt extended_history setopt extended_history
setopt share_history setopt share_history