3 Commits

4 changed files with 7 additions and 10 deletions
Split View
  1. +2
    -9
      .config/nvim/lua/tovi/plugins/lspconfig.lua
  2. +2
    -0
      .config/nvim/lua/tovi/plugins/nvim-treesitter.lua
  3. +1
    -1
      .local/bin/tmux-sessionizer
  4. +2
    -0
      .zshrc

+ 2
- 9
.config/nvim/lua/tovi/plugins/lspconfig.lua View File

@ -225,15 +225,8 @@ return {
},
rust_analyzer = {
settings = {
["rust-analyzer"] = {
cargo = {
features = {
"client",
"server",
},
},
},
diagnostics = {
enable = false,
},
},
}


+ 2
- 0
.config/nvim/lua/tovi/plugins/nvim-treesitter.lua View File

@ -29,12 +29,14 @@ return {
"dockerfile",
"gitignore",
"php",
"latex",
},
-- auto install above language parsers
auto_install = true,
-- enable syntax highlighting
highlight = {
enable = true,
disable = { "latex" }
},
-- enable indentation
indent = { enable = true },


+ 1
- 1
.local/bin/tmux-sessionizer View File

@ -3,7 +3,7 @@
if [[ $# -eq 1 ]]; then
selected=$1
else
selected=$(find ~/Projects ~/go/src/git.tovijaeschke.xyz ~/ -mindepth 1 -maxdepth 1 -type d | fzf)
selected=$(find ~/Projects ~/go/src/git.tovijaeschke.xyz ~/go/src/git.tovijaeschke.xyz/tovi/ ~/ -mindepth 1 -maxdepth 1 -type d | fzf)
fi
if [[ -z $selected ]]; then


+ 2
- 0
.zshrc View File

@ -21,6 +21,8 @@ export EDITOR=nvim
export GIT_EDITOR=nvim
export PATH="${HOME}/.local/bin/:${HOME}/go/bin:${HOME}/.cargo/bin:${PATH}"
export DOCKER_DEFAULT_PLATFORM=linux/amd64
# Enable substitution in the prompt.
setopt prompt_subst


Loading…
Cancel
Save