mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
Compare commits
16 commits
0ea3a94d1c
...
91e3b15511
Author | SHA1 | Date | |
---|---|---|---|
|
91e3b15511 | ||
|
3c6898f5f4 | ||
|
b7d0c56360 | ||
|
09a43723a4 | ||
|
4484a842da | ||
|
6e946c6c6d | ||
|
ae0d28b851 | ||
|
1286d508fb | ||
|
a138dcc640 | ||
|
67f297f77b | ||
|
dcb08779ea | ||
|
9e2eab6e0c | ||
|
296d65e319 | ||
|
64ca81d154 | ||
|
3de19fbfcc | ||
|
8a6b32a6b1 |
6 changed files with 17 additions and 2 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit a4b6e5ec326838ac60ce221d166d4059ba4a5692
|
Subproject commit 8a72acffb103853fbff84e2ad088c866a98552b3
|
2
nvim/coc-languages/lisp.vim
Normal file
2
nvim/coc-languages/lisp.vim
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
call extend(g:dotfiles_coc_extensions, {'coc-cl': 1})
|
||||||
|
call extend(g:dotfiles_coc_filetypes, {'lsp': 1})
|
2
nvim/coc-languages/php.vim
Normal file
2
nvim/coc-languages/php.vim
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
call extend(g:dotfiles_coc_extensions, {'coc-phpls': 1, 'coc-blade': 1, 'coc-tighten-lint': 1})
|
||||||
|
call extend(g:dotfiles_coc_filetypes, {'php': 1, 'blade': 1})
|
|
@ -23,6 +23,8 @@ let s:plug = funcref('dotfiles#plugman#register')
|
||||||
call s:plug('stevearc/vim-arduino')
|
call s:plug('stevearc/vim-arduino')
|
||||||
call s:plug('xiyaowong/coc-nvim-lua')
|
call s:plug('xiyaowong/coc-nvim-lua')
|
||||||
call s:plug('luke-gru/vim-riml')
|
call s:plug('luke-gru/vim-riml')
|
||||||
|
call s:plug('bhurlow/vim-parinfer')
|
||||||
|
call s:plug('vim-scripts/newlisp')
|
||||||
if has('unix')
|
if has('unix')
|
||||||
call s:plug('nvim-neorg/neorg', { 'branch': 'unstable' }) " dependencies {{{
|
call s:plug('nvim-neorg/neorg', { 'branch': 'unstable' }) " dependencies {{{
|
||||||
call s:plug('nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' })
|
call s:plug('nvim-treesitter/nvim-treesitter', { 'do': ':TSUpdate' })
|
||||||
|
|
|
@ -6,4 +6,5 @@ augroup dotfilesftdetect
|
||||||
autocmd BufWritePost PKGBUILD :call s:genSrcInfo()
|
autocmd BufWritePost PKGBUILD :call s:genSrcInfo()
|
||||||
|
|
||||||
autocmd BufNewFile,BufRead *.dream setf dream
|
autocmd BufNewFile,BufRead *.dream setf dream
|
||||||
|
autocmd BufNewFile,BufRead *.newlisp setf newlisp
|
||||||
augroup END
|
augroup END
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
set -g default-terminal 'screen-256color'
|
# Enable 256color and RGB support (because tmux loves ruining shell features)
|
||||||
|
set -g default-terminal "tmux-256color"
|
||||||
|
set-option -ga terminal-overrides ",xterm-256color:Tc"
|
||||||
|
set -as terminal-features ",gnome*:RGB"
|
||||||
|
|
||||||
|
# Enable mouse supports for those rare times I have to select something
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
|
|
||||||
|
# Prevent tmux from deleting significant amounts of history
|
||||||
|
set -g history-limit 100000
|
||||||
|
|
||||||
run 'if [ -d "~/.tmux/plugins/tpm" ]; then : ; else git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm; fi'
|
run 'if [ -d "~/.tmux/plugins/tpm" ]; then : ; else git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm; fi'
|
||||||
|
|
||||||
set -g @tpm_plugins ' \
|
set -g @tpm_plugins ' \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue