blob: 15a60e1cfc5b9eaca7a0f625ba713dceecbb7ab1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
let mapleader =" "
" Check if vim-plug is installed, otherwise download and install
if empty(glob('~/.local/share/nvim/site/autoload/plug.vim'))
silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.local/share/nvim/site/plugged')
Plug 'junegunn/goyo.vim'
Plug 'PotatoesMaster/i3-vim-syntax'
Plug 'jreybert/vimagit'
Plug 'tpope/vim-commentary'
Plug 'neomake/neomake'
Plug 'jamessan/vim-gnupg'
call plug#end()
" Some basics:
set nocompatible
filetype plugin on
syntax on
set background=dark
set termguicolors
set guicursor=n-v-c-sm:hor20,i-ci-ve:ver25,r-cr-o:block
set cursorline
let g:ultramar_italic=1
"let g:airline_theme='ultramar'
"let g:airline#extensions#tabline#enabled = 1
colorscheme ultramar
" set encoding=utf-8
set number
set relativenumber
" airline
"let g:airline_left_sep=''
"let g:airline_right_sep=''
"let g:airline_inactive_collapse=1
" default indentation
filetype plugin indent on
set tabstop=2
set shiftwidth=2
set expandtab
" Splits open at the bottom and right, which is non-retarded, unlike vim defaults.
set splitbelow
set splitright
" To avoid switching between keyboards
set langmap=ФИСВУАПРШОЛДЬТЩЗЙКЫЕГМЦЧНЯХЪБЮ;ABCDEFGHIJKLMNOPQRSTUVWXYZ{}<>,фисвуапршолдьтщзйкыегмцчняхъэ;abcdefghijklmnopqrstuvwxyz[]'
" Toggle relative line numbers
map <leader>r :set invrelativenumber<CR>
" Shortcutting split navigation, saving a keypress:
map <C-h> <C-w>h
map <C-j> <C-w>j
map <C-k> <C-w>k
map <C-l> <C-w>l
" Open the selected text in a split (i.e. should be a file).
map <leader>o "oyaW:sp <C-R>o<CR>
xnoremap <leader>o "oy<esc>:sp <C-R>o<CR>
vnoremap <leader>o "oy<esc>:sp <C-R>o<CR>
" Replace all is aliased to S.
nnoremap S :%s//g<Left><Left>
" with russian layout
nnoremap Ы :%s//g<Left><Left>
" Compile document
map <leader>c :!doccompiler <c-r>%<CR>
" with russian layout
map <leader>с :!doccompiler <c-r>%<CR>
" View live preview of document
map <leader>v :LLPStartPreview<CR>
" Spell-check set to F2:
map <F2> :setlocal spell! spelllang=en_us,es,ru<CR>
" Save changes
noremap <leader>s :update<CR>
" with russian layout
noremap <leader>ы :update<CR>
" Copy to clipboard
vnoremap <leader>y "+y
nnoremap <leader>Y "+yg_
nnoremap <leader>y "+y
nnoremap <leader>yy "+yy
" with russian layout
vnoremap <leader>н "+y
nnoremap <leader>Н "+yg_
nnoremap <leader>н "+y
nnoremap <leader>нн "+yy
" Paste from clipboard
nnoremap <leader>p "+p
nnoremap <leader>P "+P
vnoremap <leader>p "+p
vnoremap <leader>P "+P
" with russian layout
nnoremap <leader>з "+p
nnoremap <leader>З "+P
vnoremap <leader>з "+p
vnoremap <leader>З "+P
" Enable autocompletion:
set wildmode=longest,list,full
set wildmenu
imap <tab> <C-N>
" Automatically deletes all tralling whitespace on save.
autocmd BufWritePre * %s/\s\+$//e
" Runs a script that cleans out tex build files whenever I close out of a .tex file.
autocmd VimLeave *.tex !texclear %
" Disables automatic commenting on newline:
autocmd FileType * setlocal formatoptions-=c formatoptions-=r formatoptions-=o
" Join line with alt
nnoremap <M-j> J
" with russian layout
nnoremap <M-о> J
" Easier tab navigation (similar to qutebrowser)
nnoremap J :tabn<cr>
nnoremap K :tabp<cr>
" with russian layout
nnoremap О :tabn<cr>
nnoremap Л :tabp<cr>
" C-T for new tab
nnoremap <C-t> :tabe<Space>
" Navigating with guides
inoremap <leader><Tab> <Esc>/<++><Enter>"_c4l
vnoremap <leader><Tab> <Esc>/<++><Enter>"_c4l
map <leader><Tab> <Esc>/<++><Enter>"_c4l
inoremap ;gui <++>
inoremap жпгш <++>
inoremap ñgui <++>
" Replace ex mode with gq
map Q gq
" with russian layout
map Й gq
" For normal mode when can't remap caps to escape
inoremap jw <Esc>
inoremap wj <Esc>
" neomake
let g:neomake_javascript_enabled_makers = ['eslint']
let g:neomake_javascript_eslint_exe = $PWD .'/node_modules/.bin/eslint'
call neomake#configure#automake('w')
|