-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
36 lines (31 loc) · 824 Bytes
/
Copy pathinit.vim
File metadata and controls
36 lines (31 loc) · 824 Bytes
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
call plug#begin("~/.config/nvim/plugged")
Plug 'houtsnip/vim-emacscommandline'
Plug 'supercollider/scvim',
call plug#end()
syntax on
filetype plugin indent on
set rnu nu background=dark
set tw=79
set backupcopy=yes
set ts=2 sts=2 sw=2 expandtab
set wildmode=longest:full,full
let g:EmacsCommandLineSearchCommandLineMapOnlyWhenEmpty = '<M-r>'
let g:scFlash = 1
let g:scTerminalBuffer = "on"
nnoremap ; :
nnoremap H :bp<CR>
nnoremap L :bn<CR>
nnoremap <C-c> <C-c>
nnoremap <C-j> :w \| make<CR>
inoremap jk <Esc>
autocmd FileType yaml setlocal ts=2 sts=2 sw=2 expandtab
autocmd FileType css setlocal ts=2 sts=2 sw=2 expandtab
autocmd FileType scss setlocal ts=2 sts=2 sw=2 expandtab
if (has('nvim'))
augroup custom_term
autocmd!
autocmd TermOpen * setlocal bufhidden=hide
augroup END
endif
set exrc
set secure