This commit is contained in:
pg 2022-12-15 12:57:48 +01:00
commit 784cdc4b06
5 changed files with 61 additions and 0 deletions

17
.tmux.conf Normal file
View File

@ -0,0 +1,17 @@
bind -r h resize-pane -L 2
bind -r j resize-pane -D 2
bind -r k resize-pane -U 2
bind -r l resize-pane -R 2
#Tmux Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'dracula/tmux'
set -g @dracula-plugins "cpu-usage ram-usage git time"
set -g @dracula-day-month true
set -g @dracula-show-fahrenheit false
set -g @dracula-day-month true
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'

1
.tmux/plugins/tmux Submodule

@ -0,0 +1 @@
Subproject commit ffc6ef8efbe556fa908aee6615f0781348337faa

1
.tmux/plugins/tpm Submodule

@ -0,0 +1 @@
Subproject commit 420656d265a92365d1a3828dd632f3be114092ad

14
README.md Normal file
View File

@ -0,0 +1,14 @@
#pgr-terminal-defaults
Run this in TMUX:
- Debian / Ubuntu
```bash
sudo apt install tmux neovim -y
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
ln .tmux.conf ~/.tmux.conf
tmux source ~/.tmux.conf
ln -s nvim/ ~/.config/nvim
```
Then press prefix + I to Install the Tmux Plugins

28
nvim/init.vim Normal file
View File

@ -0,0 +1,28 @@
"Plugins
call plug#begin()
"LSP
"YAML
Plug 'someone-stole-my-name/yaml-companion.nvim'
"Treesitter
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
"Color
Plug 'NvChad/nvim-colorizer.lua'
Plug 'Mofiqul/dracula.nvim'
"Jinja2
Plug 'https://github.com/lepture/vim-jinja'
call plug#end()
"Jinja2 Settings
au BufNewFile,BufRead *.jn2 set ft=jinja
"Make alt work