diff options
-rw-r--r-- | general/settings.vim | 2 | ||||
-rw-r--r-- | init.vim | 1 | ||||
-rw-r--r-- | plug-config/sneak.vim | 3 | ||||
-rw-r--r-- | themes/eleline.vim | 7 | ||||
-rw-r--r-- | vim-plug/plugins.vim | 1 |
5 files changed, 11 insertions, 3 deletions
diff --git a/general/settings.vim b/general/settings.vim index 737584c6..49c5136f 100644 --- a/general/settings.vim +++ b/general/settings.vim @@ -25,7 +25,7 @@ if !exists('g:vscode') set expandtab " Converts tabs to spaces set smartindent " Makes indenting smart set autoindent " Good auto indent - set laststatus=0 " Always display the status line + set laststatus=2 " Always display the status line set number " Line numbers set cursorline " Enable highlighting of the current line set background=dark " tell vim what the background color looks like @@ -21,6 +21,7 @@ else source $HOME/.config/nvim/themes/syntax.vim source $HOME/.config/nvim/themes/onedark.vim source $HOME/.config/nvim/themes/airline.vim + " source $HOME/.config/nvim/themes/eleline.vim source $HOME/.config/nvim/plug-config/rnvimr.vim source $HOME/.config/nvim/plug-config/fzf.vim source $HOME/.config/nvim/plug-config/commentary.vim diff --git a/plug-config/sneak.vim b/plug-config/sneak.vim index e6d92936..29b57834 100644 --- a/plug-config/sneak.vim +++ b/plug-config/sneak.vim @@ -14,8 +14,7 @@ map gs <Plug>Sneak_; highlight Sneak guifg=black guibg=#00C7DF ctermfg=black ctermbg=cyan highlight SneakScope guifg=red guibg=yellow ctermfg=red ctermbg=yellow -" Cool prompts -" let g:sneak#prompt = '🕵' +" Cool prompt let g:sneak#prompt = '🔎' " I like quickscope better for this since it keeps me in the scope of a single line diff --git a/themes/eleline.vim b/themes/eleline.vim new file mode 100644 index 00000000..06598c27 --- /dev/null +++ b/themes/eleline.vim @@ -0,0 +1,7 @@ +let g:eleline_powerline_fonts = 1 +" Always show tabs + +set showtabline=2 + +" We don't need to see things like -- INSERT -- anymore +set noshowmode diff --git a/vim-plug/plugins.vim b/vim-plug/plugins.vim index df5d76f1..4c60fc1a 100644 --- a/vim-plug/plugins.vim +++ b/vim-plug/plugins.vim @@ -45,6 +45,7 @@ call plug#begin('~/.config/nvim/autoload/plugged') " Intellisense Plug 'neoclide/coc.nvim', {'branch': 'release'} " Status Line + " Plug 'ChristianChiarulli/eleline.vim' Plug 'vim-airline/vim-airline' Plug 'vim-airline/vim-airline-themes' " Ranger |