Compare commits

..

No commits in common. "678846d3788ecdbb5254a10bec7def978a97d11f" and "aa539880e0dc381bf7055ce5a2f82eb66cb71a6d" have entirely different histories.

2 changed files with 17 additions and 20 deletions

View File

@ -6,23 +6,24 @@ Plug 'https://github.com/preservim/nerdtree' " file tree
Plug 'https://github.com/airblade/vim-gitgutter' " git diff Plug 'https://github.com/airblade/vim-gitgutter' " git diff
Plug 'luochen1990/rainbow' Plug 'luochen1990/rainbow'
Plug 'navarasu/onedark.nvim' Plug 'navarasu/onedark.nvim'
" Plug 'https://github.com/weilbith/nvim-code-action-menu' " fix my shit helper window :)
Plug 'neoclide/coc.nvim', {'branch': 'release'} " code completion Plug 'neoclide/coc.nvim', {'branch': 'release'} " code completion
call plug#end() call plug#end()
" =============== Vannila vim config ================================================ " =============== Vannila vim config ================================================
let mapleader = "\\" let mapleader = "\\"
set splitbelow :set splitbelow
set clipboard=unnamedplus :set clipboard=unnamedplus
set number relativenumber :set number relativenumber
windo set nowrap :windo set nowrap
set showcmd :set showcmd
set mouse=a :set mouse=a
" :set cursorline " :set cursorline
set foldmethod=syntax :set foldmethod=syntax
set updatetime=250 :set updatetime=250
set tabstop=4 shiftwidth=4 smarttab :set tabstop=4 shiftwidth=4 smarttab
highlight Comment ctermfg=Grey :highlight Comment ctermfg=Grey
nnoremap <silent> <leader>p :split +term <CR> nnoremap <silent> <leader>p :split +term <CR>
@ -35,16 +36,16 @@ let g:onedark_config = {
\ 'style': 'warmer', \ 'style': 'warmer',
\} \}
colorscheme onedark colorscheme onedark
hi CocFloating guibg=#151515 guifg=clear :hi CocFloating guibg=#151515 guifg=clear
hi Pmenu guibg=#151515 guifg=clear :hi Pmenu guibg=#151515 guifg=clear
hi @parameter guifg=#ed6215 :hi @parameter guifg=#ed6215
hi CursorColumn guibg=#e2c792 guifg=#232326 :hi CursorColumn guibg=#e2c792 guifg=#232326
" =============== NERDTree Config ================================================ " =============== NERDTree Config ================================================
let NERDTreeShowHidden=1 :let NERDTreeShowHidden=1
" "
" =============== Rainbow Config ================================================ " =============== Rainbow Config ================================================
let g:rainbow_active = 1 :let g:rainbow_active = 1
" =============== COC Config ================================================ " =============== COC Config ================================================

View File

@ -1,10 +1,6 @@
#!/bin/bash
# ssh-encode FILE SSH-ALIAS
FILE=$1 FILE=$1
OTHER=$2 OTHER=$2
EXTENSION=".new.mp4" EXTENSION=".new.mp4"
# probably best this file is on a tmpfs mount as to reduce
# rw wear
TEMP="/tmp/" TEMP="/tmp/"