summaryrefslogtreecommitdiff
path: root/nvim
diff options
context:
space:
mode:
authortsxv478 <vt0451@yandex.ru>2023-04-01 02:15:08 +0300
committertsxv478 <vt0451@yandex.ru>2023-04-01 02:15:08 +0300
commitb66b74e8f97bc04da5c6633e50101452cb88d680 (patch)
treeb2559b19e65073e09b35fcb1f6068e440a623c88 /nvim
parent966e2489aaca16457951e277850471a9053e961e (diff)
nvim tokyonight
Diffstat (limited to 'nvim')
-rw-r--r--nvim/init.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/nvim/init.vim b/nvim/init.vim
index f1bb2c1..420a13d 100644
--- a/nvim/init.vim
+++ b/nvim/init.vim
@@ -10,6 +10,7 @@ call plug#begin()
Plug 'neovim/nvim-lspconfig'
Plug 'ervandew/supertab'
Plug 'morhetz/gruvbox'
+Plug 'folke/tokyonight.nvim'
Plug 'preservim/nerdtree'
Plug 'jreybert/vimagit'
Plug 'tpope/vim-commentary'
@@ -82,4 +83,5 @@ nnoremap <leader>f :NERDTreeToggle<CR>
autocmd FileType c map <buffer> <leader>e :w<CR>:exec '!gcc' shellescape(@%, 1) '-o out; ./out'<CR>
autocmd FileType python map <buffer> <leader>e :w<CR>:exec '!python' shellescape(@%, 1)<CR>
autocmd FileType sh map <buffer> <leader>e :w<CR>:exec '!sh' shellescape(@%, 1)<CR>
+" autocmd VimEnter * hi Normal guibg=NONE ctermbg=NONE
autocmd VimLeave,VimSuspend * set guicursor=a:block-blinkon250