mirror of
https://github.com/edu4rdshl/linuxscripts.git
synced 2026-07-17 23:24:52 +00:00
Update
This commit is contained in:
parent
d51d6db4d6
commit
20a43763e4
2 changed files with 9 additions and 8 deletions
|
|
@ -110,8 +110,7 @@ fi
|
|||
### OWN ALIAS ###
|
||||
|
||||
#Pastes
|
||||
alias pb="pbin"
|
||||
alias uplog="logfile=/tmp/log$RANDOM; journalctl -r > ${logfile}; pbin ${logfile}; unset logfile;"
|
||||
alias rs="curl --data-binary @- https://paste.rs"
|
||||
|
||||
#Temperature
|
||||
alias clima='curl wttr.in/bogota?lang=es'
|
||||
|
|
@ -197,9 +196,6 @@ export EDITOR="nvim"
|
|||
# Visual
|
||||
export VISUAL="nvim"
|
||||
|
||||
# Video Acceleration
|
||||
export LIBVA_DRIVER_NAME="iHD"
|
||||
|
||||
# Fix DIR
|
||||
PATH="$(ruby -e 'print Gem.user_dir')/bin:$HOME/.local/bin:$PATH"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
call plug#begin('~/.local/share/nvim/plugged')
|
||||
|
||||
" Declare the list of plugins.
|
||||
Plug 'morhetz/gruvbox'
|
||||
" Plug 'morhetz/gruvbox'
|
||||
Plug 'drewtempelmeyer/palenight.vim'
|
||||
" Plug 'Badacadabra/vim-archery'
|
||||
Plug 'Yggdroot/indentLine'
|
||||
if has('nvim')
|
||||
|
|
@ -20,6 +21,10 @@ Plug 'mattn/webapi-vim'
|
|||
Plug 'mustache/vim-mustache-handlebars'
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
|
||||
" Neovim airline
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
|
||||
" Auto pair
|
||||
Plug 'jiangmiao/auto-pairs'
|
||||
|
||||
|
|
@ -39,12 +44,12 @@ let g:rust_clip_command = 'xclip -selection clipboard'
|
|||
" Syntax and programming things
|
||||
syntax on
|
||||
set guifont=Monospace\ Bold\ 12
|
||||
colors gruvbox
|
||||
set background=dark
|
||||
colors palenight
|
||||
set inccommand=nosplit
|
||||
|
||||
" Set clipboard
|
||||
set clipboard+=unnamedplus
|
||||
" set clipboard+=unnamedplus
|
||||
|
||||
" Uncomment the following to have Vim jump to the last position when
|
||||
" reopening a file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue