From d39808b1039e16c638120944675757d4792a4725 Mon Sep 17 00:00:00 2001 From: LinlyBoi Date: Sat, 3 Dec 2022 20:55:20 +0200 Subject: [PATCH] yes --- dot_tmux.conf | 8 +++++++- dot_zsh_aliases | 2 +- dot_zshrc | 1 + private_dot_config/nvim/lua/custom/plugins/lspconfig.lua | 3 +-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/dot_tmux.conf b/dot_tmux.conf index bd70a42..50a8ad7 100644 --- a/dot_tmux.conf +++ b/dot_tmux.conf @@ -37,7 +37,13 @@ select-pane -t '{bottom-right}' # the other session I use new-session -s work split-window -v -p 90 -t '{top}' -b "cd ~/Code && ranger" -split-window -h -t '{bottom}' -b "vimpc" +split-window -h -t '{bottom}' -b "zsh" + +#Tuis to read shit +new-session -s tui +split-window -v -b -l 10 "toot tui" +split-window -h -b -t '{top}' -p 60 -l 136 newsboat +split-window -h -t '{bottom}' -b vimpc #switch panels bind k selectp -U # switch to panel Up diff --git a/dot_zsh_aliases b/dot_zsh_aliases index c8adf40..eae6d84 100644 --- a/dot_zsh_aliases +++ b/dot_zsh_aliases @@ -296,7 +296,7 @@ alias bringz='git pull' alias chicken='git add' alias oanward='git commit -m' alias ooanward='git commit -am' -alias yolo='git commit -m "$(curl -s http://whatthecommit.com/index.txt)"' +alias yolo='git commit -m "$(curl http://whatthecommit.com/index.txt)"' alias letcat='git checkout' alias violenz='git rebase' alias ani-cli='ani-cli -q 480' diff --git a/dot_zshrc b/dot_zshrc index 7fa9f98..96ffb51 100644 --- a/dot_zshrc +++ b/dot_zshrc @@ -140,6 +140,7 @@ export PATH=$PATH:/home/libkyy/.spicetify:/home/libkyy/.cargo/bin export TERMINAL=kitty export MPD_HOST=127.0.0.1 export MPD_PORT=6969 +export EDITOR=nvim # Load Angular CLI autocompletion. diff --git a/private_dot_config/nvim/lua/custom/plugins/lspconfig.lua b/private_dot_config/nvim/lua/custom/plugins/lspconfig.lua index 9677480..3f8d906 100644 --- a/private_dot_config/nvim/lua/custom/plugins/lspconfig.lua +++ b/private_dot_config/nvim/lua/custom/plugins/lspconfig.lua @@ -3,7 +3,7 @@ local on_attach = require("plugins.configs.lspconfig").on_attach local capabilities = require("plugins.configs.lspconfig").capabilities local lspconfig = require "lspconfig" -local servers = { "html", "cssls", "clangd","tsserver","angularls","rust_analyzer","rustfmt",} +local servers = { "html", "cssls", "clangd","tsserver","angularls","rust_analyzer","rustfmt","r_language_server",} for _, lsp in ipairs(servers) do lspconfig[lsp].setup { @@ -49,4 +49,3 @@ require('lspconfig')['rustfmt'].setup{ on_attach = on_attach, flags = lsp_flags, } -