Changes
This commit is contained in:
parent
9498181a09
commit
7a1858479b
2 changed files with 12 additions and 7 deletions
|
|
@ -1,9 +1,10 @@
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get upgrade
|
apt-get upgrade
|
||||||
|
|
||||||
apt-get install python3 vim-nox tmux nano zsh git autossh
|
apt-get install python3 vim-nox tmux nano zsh git autossh mosh sshuttle fail2ban avahi-daemon ufw lynx
|
||||||
|
|
||||||
|
|
||||||
|
ufw allow ssh
|
||||||
|
ufw enable
|
||||||
|
|
||||||
|
pip3 install requests bs4
|
||||||
pip3 install requests
|
|
||||||
|
|
@ -42,7 +42,9 @@ Plugin 'davidhalter/jedi-vim'
|
||||||
Plugin 'ervandew/supertab'
|
Plugin 'ervandew/supertab'
|
||||||
Plugin 'vim-syntastic/syntastic'
|
Plugin 'vim-syntastic/syntastic'
|
||||||
Plugin 'tpope/vim-fugitive'
|
Plugin 'tpope/vim-fugitive'
|
||||||
|
"Plugin 'lervag/vimtex'
|
||||||
|
Plugin 'LaTeX-Box-Team/LaTeX-Box'
|
||||||
|
Plugin 'keith/swift.vim'
|
||||||
|
|
||||||
" The following are examples of different formats supported.
|
" The following are examples of different formats supported.
|
||||||
" Keep Plugin commands between vundle#begin/end.
|
" Keep Plugin commands between vundle#begin/end.
|
||||||
|
|
@ -189,8 +191,8 @@ inoremap <Tab> <C-r>=InsertTabWrapper()<CR>
|
||||||
inoremap <S-Tab> <C-n>
|
inoremap <S-Tab> <C-n>
|
||||||
|
|
||||||
" Open new split panes to right and bottom, which feels more natural
|
" Open new split panes to right and bottom, which feels more natural
|
||||||
"set splitbelow
|
set splitbelow
|
||||||
"set splitright
|
set splitright
|
||||||
|
|
||||||
" Quicker window movement
|
" Quicker window movement
|
||||||
"nnoremap <C-j> <C-w>j
|
"nnoremap <C-j> <C-w>j
|
||||||
|
|
@ -222,6 +224,7 @@ nnoremap k gk
|
||||||
set linebreak
|
set linebreak
|
||||||
|
|
||||||
" Searching with "/": Ignore case if search term is lower case.
|
" Searching with "/": Ignore case if search term is lower case.
|
||||||
|
set ignorecase
|
||||||
set smartcase
|
set smartcase
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -254,7 +257,8 @@ set path+=**
|
||||||
"Syntastic Settings:
|
"Syntastic Settings:
|
||||||
|
|
||||||
let g:syntastic_python_checkers = ['prospector', 'python']
|
let g:syntastic_python_checkers = ['prospector', 'python']
|
||||||
|
let g:syntastic_javascript_checkers=['eslint']
|
||||||
|
let g:syntastic_html_checkers=['tidy']
|
||||||
|
|
||||||
|
|
||||||
colorscheme darcula
|
colorscheme darcula
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue