mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
UPD
This commit is contained in:
parent
e4cc35e62e
commit
fa57d73f35
1 changed files with 31 additions and 2 deletions
|
|
@ -3,25 +3,33 @@ call plug#begin('~/.local/share/nvim/plugged')
|
|||
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'crusoexia/vim-monokai'
|
||||
Plug 'vim-airline/vim-airline-themes'
|
||||
|
||||
"Coding
|
||||
Plug 'valloric/youcompleteme'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
Plug 'vim-scripts/Rainbow-Parenthesis'
|
||||
Plug 'tpope/vim-surround'
|
||||
Plug 'mbbill/undotree'
|
||||
|
||||
"Snippets stuff
|
||||
Plug 'honza/vim-snippets'
|
||||
Plug 'sirver/ultisnips'
|
||||
|
||||
"Python
|
||||
Plug 'python-mode/python-mode', { 'branch': 'develop' }
|
||||
Plug 'janko-m/vim-test'
|
||||
Plug 'heavenshell/vim-pydocstring'
|
||||
"Plug 'skyleach/pudb.vim'
|
||||
|
||||
"Other
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
Plug 'wakatime/vim-wakatime'
|
||||
Plug 'ctrlpvim/ctrlp.vim'
|
||||
"Plug 'lervag/vimtex'
|
||||
Plug 'vim-scripts/glsl.vim'
|
||||
Plug 'tikhomirov/vim-glsl'
|
||||
|
||||
|
||||
Plug 'ryanoasis/vim-devicons'
|
||||
call plug#end()
|
||||
|
||||
"LaTeX
|
||||
|
|
@ -35,18 +43,36 @@ call plug#end()
|
|||
"let g:python_host_prog='/usr/bin/python'
|
||||
"let g:python3_host_prog='/usr/bin/python3'
|
||||
let g:pymode_python = 'python3'
|
||||
let g:pymode_rope = 1
|
||||
let g:pymode_rope_completion = 0
|
||||
|
||||
|
||||
map <F8> :PymodeRun<CR>
|
||||
au BufNewFile,BufRead *.frag,*.vert,*.fp,*.vp,*.glsl setf glsl
|
||||
|
||||
"Usability
|
||||
set number
|
||||
set hlsearch
|
||||
set cursorline
|
||||
set mouse=a
|
||||
set splitbelow
|
||||
set splitright
|
||||
|
||||
map <C-n> :NERDTreeToggle<CR>
|
||||
nmap <S-Ins> "+p
|
||||
map <C-m> :UndotreeToggle<CR>
|
||||
|
||||
"Splits
|
||||
nmap <C-h> <C-W>h
|
||||
nmap <C-j> <C-W>j
|
||||
nmap <C-k> <C-W>k
|
||||
nmap <C-l> <C-W>l
|
||||
|
||||
"Snippets
|
||||
let g:UltiSnipsUsePythonVersion = 3
|
||||
let g:UltiSnipsExpandTrigger="<C-j>"
|
||||
let g:UltiSnipsJumpForwardTrigger="<s-tab>"
|
||||
let g:UltiSnipsJumpBackwardTrigger=""
|
||||
|
||||
"Indent stuff
|
||||
set tabstop=4
|
||||
|
|
@ -60,3 +86,6 @@ set autoindent
|
|||
colorscheme monokai
|
||||
set termguicolors
|
||||
set guifont=DroidSansMono\ Nerd\ Font\ 11
|
||||
set laststatus=2
|
||||
let g:airline_theme='powerlineish'
|
||||
let g:airline_powerline_fonts = 1
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue