diff options
author | June McEnroe <june@causal.agency> | 2017-07-04 21:46:58 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2017-07-04 21:46:58 -0400 |
commit | 0152a229940e1add539b91cc3cf510cb0bdaf661 (patch) | |
tree | fb75b708c2381be5f62f74c61cdaf9e4ede3d2d2 /home | |
parent | Remove <Esc><Esc> terminal mapping (diff) | |
download | src-0152a229940e1add539b91cc3cf510cb0bdaf661.tar.gz src-0152a229940e1add539b91cc3cf510cb0bdaf661.zip |
Reorganize neovim configuration, again
Diffstat (limited to '')
-rw-r--r-- | home/.config/nvim/init.vim | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim index 36071716..e4dfb744 100644 --- a/home/.config/nvim/init.vim +++ b/home/.config/nvim/init.vim @@ -1,30 +1,27 @@ set hidden +set undofile set shortmess=atI set wildmode=list:longest set splitbelow splitright +command W w +autocmd BufNewFile,BufRead *.asm,*.mac setfiletype nasm +set tabstop=8 expandtab shiftwidth=4 shiftround smartindent +autocmd FileType sh,zsh,ruby setlocal shiftwidth=2 set ignorecase smartcase inccommand=nosplit -set tabstop=4 expandtab shiftwidth=4 shiftround smartindent +nmap <leader><leader> :nohlsearch<CR> set foldmethod=syntax foldlevel=99 -set undofile + +autocmd TermOpen * setlocal statusline=%{b:term_title} +autocmd BufEnter term://* startinsert +tmap <C-w> <C-\><C-n><C-w> set title set scrolloff=1 set number colorcolumn=80,100 set list listchars=tab:»·,trail:· - -nmap <leader><leader> :nohlsearch<CR> -tmap <C-w> <C-\><C-n><C-w> -command! W w - colorscheme trivial -autocmd TermOpen * setlocal statusline=%{b:term_title} -autocmd BufEnter term://* startinsert -autocmd BufNewFile,BufRead *.asm,*.mac setfiletype nasm -autocmd FileType sh,zsh,ruby setlocal shiftwidth=2 - -" Tarmak 1 noremap n j noremap e k noremap k n |