Migrate from neovim to vim
This commit is contained in:
parent
98bd78c823
commit
d86f8477fc
|
@ -2,8 +2,9 @@ weechat/.weechat/*.log
|
|||
weechat/.weechat/logs
|
||||
weechat/.weechat/script/
|
||||
weechat/.weechat/sec.conf
|
||||
neovim/.config/nvim/.netrwhist
|
||||
neovim/.config/nvim/plugged
|
||||
vim/.vim/.netrwhist
|
||||
vim/.vim/plugged
|
||||
vim/.vim/autoload
|
||||
deluge/.config/deluge/state/
|
||||
deluge/.config/deluge/*.state
|
||||
deluge/.config/deluge/icons/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# Text Editor
|
||||
set -x EDITOR nvim
|
||||
set -x EDITOR vim
|
||||
|
||||
# Man colors
|
||||
set -g man_standout -o blue
|
||||
|
@ -8,12 +8,11 @@ set -g man_bold -o magenta
|
|||
# Aliases
|
||||
alias f "fff"
|
||||
alias bc "bc -l"
|
||||
alias vim "nvim"
|
||||
alias docker-compose "podman-compose"
|
||||
alias hdmi-audio "pactl set-card-profile 0 output:hdmi-stereo-extra1"
|
||||
alias laptop-audio "pacmd set-card-profile 0 output:analog-stereo+input:analog-stereo"
|
||||
alias sc "systemctl"
|
||||
alias jc "journalctl -fu"
|
||||
alias jc "journalctl -eu"
|
||||
|
||||
# Additional paths
|
||||
set PATH $PATH $HOME/.emacs.d/bin
|
||||
|
|
|
@ -31,7 +31,7 @@ let g:UltiSnipsExpandTrigger = '<tab>'
|
|||
let g:UltiSnipsJumpForwardTrigger = '<tab>'
|
||||
let g:UltiSnipsJumpBackwardTrigger = '<s-tab>'
|
||||
""Vim-plug
|
||||
call plug#begin('~/.config/nvim/plugged')
|
||||
call plug#begin('~/.vim/plugged')
|
||||
Plug 'plasticboy/vim-markdown', { 'for': 'markdown' }
|
||||
Plug 'junegunn/goyo.vim', { 'on': 'Goyo' }
|
||||
Plug 'SirVer/ultisnips', { 'for': 'markdown' }
|
||||
|
@ -42,6 +42,9 @@ call plug#end()
|
|||
colorscheme iceberg
|
||||
set bg=dark
|
||||
set termguicolors
|
||||
""Sets the colorscheme in tmux
|
||||
let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
|
||||
let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
|
||||
""Disabe status line
|
||||
set laststatus=0
|
||||
""Set Markdown filetype for neomutt
|
Loading…
Reference in New Issue