diff options
author | Oxbian <oxbian@mailbox.org> | 2025-01-31 20:49:48 +0100 |
---|---|---|
committer | Oxbian <oxbian@mailbox.org> | 2025-01-31 20:49:48 +0100 |
commit | e65597837ec3057989f6bc67d90e5c10d4f3d14e (patch) | |
tree | 50e4eee92a5973a8486f91e01e691b2293954659 /conf | |
parent | d28a067a4d4b52a1eac7e1c62a46c4726713d29c (diff) | |
download | vimrc-e65597837ec3057989f6bc67d90e5c10d4f3d14e.tar.gz vimrc-e65597837ec3057989f6bc67d90e5c10d4f3d14e.zip |
feat: removing install.sh and using /home/oxbian/.config/vim as default config dir
Diffstat (limited to 'conf')
-rw-r--r-- | conf/options.vim | 4 | ||||
-rw-r--r-- | conf/plugins.vim | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/conf/options.vim b/conf/options.vim index 8e84a25..c4e131c 100644 --- a/conf/options.vim +++ b/conf/options.vim @@ -9,8 +9,8 @@ syntax on " Show syntax color set number " Show line number colorscheme onedark " Set vim theme to onedark set colorcolumn=80 " Add an indicator for 80 char limit -set textwidth=80 " Set max text width -autocmd BufNewFile,BufRead * setlocal formatoptions=cropt " Linebreak at 80 char +"set textwidth=80 " Set max text width +"autocmd BufNewFile,BufRead * setlocal formatoptions=cropt " Linebreak at 80 char set relativenumber " Show relative line number set cursorline " Select the current line set showmatch " Show matching brackets when hovered diff --git a/conf/plugins.vim b/conf/plugins.vim index 682cbe7..89ca4c3 100644 --- a/conf/plugins.vim +++ b/conf/plugins.vim @@ -25,7 +25,6 @@ Plug 'airblade/vim-gitgutter' " Git diff Plug 'neoclide/coc.nvim', {'branch': 'release'} " Tools -Plug 'wakatime/vim-wakatime' " Wakatime Plug 'ap/vim-css-color' " rgb, hex color preview call plug#end() |