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