diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-07-28 13:17:28 +0300 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2024-07-28 13:17:28 +0300 |
commit | 2c52771a6c49e85582b965021baee98e150c81a2 (patch) | |
tree | 3f5142db3fe0acb32fab967a043c57b0394f62cc /nvim/init.vim | |
parent | 0df7f4fa0009a16c710685583a8ce3afee3bb813 (diff) |
Great changes to the install script now making use of xargs and xpkg.
Great changes in how other tools function better as well.
Changes to be committed:
renamed: dunst/launch.sh -> dunst/test.sh
modified: install.sh
modified: X11/xinit
modified: appimageupdate
modified: nvim/init.vim
modified: pmenu
modified: runc
modified: zsh/aliases
modified: zsh/env
modified: zsh/zshrc
Diffstat (limited to 'nvim/init.vim')
-rw-r--r-- | nvim/init.vim | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nvim/init.vim b/nvim/init.vim index b9e9784..13944c6 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -135,8 +135,8 @@ nnoremap <Leader>b :set cursorline! <CR> nnoremap <leader>\ :NERDTreeToggle<CR> " Start NERDTree. If a file is specified, move the cursor to its window. -" autocmd StdinReadPre * let s:std_in=1 -" autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif + "autocmd StdinReadPre * let s:std_in=1 + "autocmd VimEnter * NERDTree | if argc() > 0 || exists("s:std_in") | wincmd p | endif " Exit Vim if NERDTree is the only window left. autocmd BufEnter * if tabpagenr('$') == 1 && winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif @@ -156,6 +156,7 @@ nnoremap <Leader>b :set cursorline! <CR> """NeoVide if exists("g:neovide") set guifont="Inconsolata" - "let g:neovide_transparency = 0.8 + let g:neovide_transparency = 0.75 + let g:airline_powerline_fonts = 0 let g:neovide_cursor_vfx_mode = "pixiedust" endif |