This commit is contained in:
LinlyBoi
2022-12-03 20:55:20 +02:00
parent 9888691dd7
commit d39808b103
4 changed files with 10 additions and 4 deletions

View File

@@ -37,7 +37,13 @@ select-pane -t '{bottom-right}'
# the other session I use # the other session I use
new-session -s work new-session -s work
split-window -v -p 90 -t '{top}' -b "cd ~/Code && ranger" 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 #switch panels
bind k selectp -U # switch to panel Up bind k selectp -U # switch to panel Up

View File

@@ -296,7 +296,7 @@ alias bringz='git pull'
alias chicken='git add' alias chicken='git add'
alias oanward='git commit -m' alias oanward='git commit -m'
alias ooanward='git commit -am' 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 letcat='git checkout'
alias violenz='git rebase' alias violenz='git rebase'
alias ani-cli='ani-cli -q 480' alias ani-cli='ani-cli -q 480'

View File

@@ -140,6 +140,7 @@ export PATH=$PATH:/home/libkyy/.spicetify:/home/libkyy/.cargo/bin
export TERMINAL=kitty export TERMINAL=kitty
export MPD_HOST=127.0.0.1 export MPD_HOST=127.0.0.1
export MPD_PORT=6969 export MPD_PORT=6969
export EDITOR=nvim
# Load Angular CLI autocompletion. # Load Angular CLI autocompletion.

View File

@@ -3,7 +3,7 @@ local on_attach = require("plugins.configs.lspconfig").on_attach
local capabilities = require("plugins.configs.lspconfig").capabilities local capabilities = require("plugins.configs.lspconfig").capabilities
local lspconfig = require "lspconfig" 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 for _, lsp in ipairs(servers) do
lspconfig[lsp].setup { lspconfig[lsp].setup {
@@ -49,4 +49,3 @@ require('lspconfig')['rustfmt'].setup{
on_attach = on_attach, on_attach = on_attach,
flags = lsp_flags, flags = lsp_flags,
} }