Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

vim plug

# Neovim:
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'
       
# Vim:
curl -fLo ~/.vim/autoload/plug.vim --create-dirs 
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Comment

vim plug

# paste this plugin in ~/.vimrc - only for javascript dev

call plug#begin()
Plug 'mattn/emmet-vim'
Plug 'https://github.com/codota/TabNine.git'
Plug 'valloric/youcompleteme'
Plug 'pangloss/vim-javascript'
Plug 'jelera/vim-javascript-syntax'
Plug 'leafgarland/typescript-vim'
Plug 'quramy/tsuquyomi'
Plug 'dracula/dracula-theme'
Plug 'ekalinin/dockerfile.vim'
Plug 'nathanaelkane/vim-indent-guides'
Plug 'eslint/eslint'
Plug 'prettier/prettier'
Plug 'moll/vim-node'
Plug 'luochen1990/rainbow'
Plug 'ycm-core/YouCompleteMe'
call plug#end()
Comment

vim plug

1
2
curl -fLo ~/.vim/autoload/plug.vim --create-dirs 
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
Comment

PREVIOUS NEXT
Code Example
Shell :: install nodejs from binary 
Shell :: powershell find in history 
Shell :: how to remove first line from output using awk 
Shell :: How to revert uncommitted changes including files and folders? 
Shell :: linux extract zip with password 
Shell :: update brew 
Shell :: run bash script in its directory 
Shell :: bash get one checksum for many files 
Shell :: reload vimrc without exiting 
Shell :: openssl generate certificate 
Shell :: linux search for line in file 
Shell :: kill occupation port windows 
Shell :: import sql single table dump in postgres 
Shell :: mv is a Unix command and I think you are using windows. You have 2 options: Installing Git bash and in the bash use mv command. Using Windows move command. 
Shell :: how to enable hibernate windows 11 via cmd 
Shell :: alpine add user 
Shell :: check permissions for a folder in ubuntu 
Shell :: update all snap packages 
Shell :: pip silent install 
Shell :: telegram on arch linux 
Shell :: can linux terminal crash 
Shell :: git commit disable hooks 
Shell :: bash git coloring 
Shell :: how to uninstall apps without admin password 
Shell :: bash print count of unique words in column 
Shell :: save output of command to craible bash 
Shell :: bash print line if column value is in column of another file 
Shell :: spotify linux 
Shell :: bash symlink everything in a directory 
Shell :: uninstall gitkraken in ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
3+1 =