about summary refs log tree commit diff stats
path: root/.config/nvim/init.vim
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/init.vim')
-rw-r--r--.config/nvim/init.vim55
1 files changed, 0 insertions, 55 deletions
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim
deleted file mode 100644
index 58f2798..0000000
--- a/.config/nvim/init.vim
+++ /dev/null
@@ -1,55 +0,0 @@
-set nocompatible
-
-" inteligent indentation
-filetype indent plugin on
-set tabstop=4 softtabstop=4 shiftwidth=4 expandtab smartindent
-set showmatch ignorecase smartcase
-set noswapfile
-
-set clipboard=unnamedplus
-
-set undofile " persist undo
-
-syntax on
-set termguicolors
-
-set number relativenumber numberwidth=2 cursorline
-set conceallevel=3
-
-set background=dark
-let g:sonokai_style = 'shusia'
-let g:sonokai_better_performance = 1
-let g:sonokai_transparent_background = 1
-colo sonokai
-
-"" bindings
-" leader mapping
-nnoremap <SPACE> <Nop>
-let mapleader=" "
-let localleader=" " 
-
-" easy splits
-nnoremap <leader>h <C-w>h
-nnoremap <leader>j <C-w>j
-nnoremap <leader>k <C-w>k
-nnoremap <leader>l <C-w>l
-nnoremap <leader>L :vs<CR>
-nnoremap <leader>J :sp<CR>
-nnoremap <silent> <Esc><Esc> :nohlsearch<CR>
-set splitright splitbelow
-
-" easy write
-nmap <leader>w :w!<CR>
-nmap <leader>W :w!<CR>
-nmap <leader>q :wq!<CR>
-
-" easy term-mode
-tnoremap <C-\> <C-\><C-n>
-
-" emmet
-let g:user_emmet_mode='n' " only on normal mode, thx
-let g:user_emmet_install_global = 0
-autocmd FileType html,css EmmetInstall
-
-let g:user_emmet_leader_key=','
-