aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOxbian <got.dacs@slmail.me>2024-05-09 19:22:20 +0200
committerOxbian <got.dacs@slmail.me>2024-05-09 19:22:20 +0200
commitf63208096bd0b5623692839a7091e99008ef5e0a (patch)
treed20b94de37d451ff498427fa5ff14c9f98cf1bb8
parent583cee5d527698baebfa1ee4845c1a1ebbcf2453 (diff)
downloadvimrc-f63208096bd0b5623692839a7091e99008ef5e0a.tar.gz
vimrc-f63208096bd0b5623692839a7091e99008ef5e0a.zip
FIX: symlink glitch + removing unused plugins from README
-rw-r--r--.gitignore9
-rw-r--r--.vimrc6
-rw-r--r--README.md5
-rw-r--r--conf/after/ftplugin/markdown.vim (renamed from vim/after/ftplugin/markdown.vim)0
-rw-r--r--conf/after/ftplugin/python.vim (renamed from vim/after/ftplugin/python.vim)0
-rw-r--r--conf/keymaps.vim (renamed from vim/keymaps.vim)0
-rw-r--r--conf/options.vim (renamed from vim/options.vim)2
-rw-r--r--conf/plugins.vim (renamed from vim/plugins.vim)0
-rw-r--r--conf/spell/en.utf-8.add (renamed from vim/spell/en.utf-8.add)0
-rw-r--r--conf/spell/fr.utf-8.spl (renamed from vim/spell/fr.utf-8.spl)bin571627 -> 571627 bytes
-rw-r--r--conf/spell/fr.utf-8.sug (renamed from vim/spell/fr.utf-8.sug)bin2324315 -> 2324315 bytes
-rwxr-xr-xinstall.sh2
-rw-r--r--vim/spell/en.utf-8.add.splbin211 -> 0 bytes
13 files changed, 12 insertions, 12 deletions
diff --git a/.gitignore b/.gitignore
index 844bea8..e174603 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,8 @@
.vim/plugged
.vim/autoload/*
.vim/autoload
-vim/plugged/*
-vim/plugged
-vim/autoload/*
-vim/autoload
+conf/plugged/*
+conf/plugged
+conf/autoload/*
+conf/autoload
+conf/spell/en.utf-8.add.spl
diff --git a/.vimrc b/.vimrc
index 06d4127..1486e4b 100644
--- a/.vimrc
+++ b/.vimrc
@@ -1,4 +1,4 @@
" Vim configuration, do not delete
-source ~/.config/vim/plugins.vim
-source ~/.config/vim/options.vim
-source ~/.config/vim/keymaps.vim
+source ~/.config/vim/conf/plugins.vim
+source ~/.config/vim/conf/options.vim
+source ~/.config/vim/conf/keymaps.vim
diff --git a/README.md b/README.md
index 30565df..81769e1 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,8 @@ You will need `vim` and `git` to be able to use this configuration.
Normally if you run the `install.sh` script it will work, but if you have a problem, try to install vim plug and check if your problem is solved.
-**Be careful the install.sh script remove everything in `.config/vim` and in `$HOME/.vim` !**
+*This vim config is expected to be cloned into `.config/vim`*
+**Be careful the install.sh script remove everything in `$HOME/.vim` !**
```sh
curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
@@ -24,7 +25,6 @@ This config has just the necessary plugins installed:
### Themes
- [OneDark](https://github.com/joshdick/onedark.vim) onedark theme.
-- [Zenbones](https://github.com/mcchrish/zenbones.nvim) zenbones theme.
### Graphics utilities
@@ -94,6 +94,7 @@ Keybinds:
- `d` create a directory,
- `%` create a file,
- `R` rename/move a file,
+- `D` delete a file
### Vim Gutter
diff --git a/vim/after/ftplugin/markdown.vim b/conf/after/ftplugin/markdown.vim
index bcda2dd..bcda2dd 100644
--- a/vim/after/ftplugin/markdown.vim
+++ b/conf/after/ftplugin/markdown.vim
diff --git a/vim/after/ftplugin/python.vim b/conf/after/ftplugin/python.vim
index 41b1d88..41b1d88 100644
--- a/vim/after/ftplugin/python.vim
+++ b/conf/after/ftplugin/python.vim
diff --git a/vim/keymaps.vim b/conf/keymaps.vim
index d68b8c4..d68b8c4 100644
--- a/vim/keymaps.vim
+++ b/conf/keymaps.vim
diff --git a/vim/options.vim b/conf/options.vim
index 5e3f11a..6a9e2dc 100644
--- a/vim/options.vim
+++ b/conf/options.vim
@@ -7,7 +7,7 @@ set hlsearch " Highlight all match search pattern
" Graphics options
syntax on " Show syntax color
set number " Show line number
-set colorscheme=onedark " Set vim theme to onedark
+colorscheme onedark " Set vim theme to onedark
set colorcolumn=80 " Add an indicator for 80 char limit
set relativenumber " Show relative line number
set cursorline " Select the current line
diff --git a/vim/plugins.vim b/conf/plugins.vim
index 7dd1f9a..7dd1f9a 100644
--- a/vim/plugins.vim
+++ b/conf/plugins.vim
diff --git a/vim/spell/en.utf-8.add b/conf/spell/en.utf-8.add
index 283920b..283920b 100644
--- a/vim/spell/en.utf-8.add
+++ b/conf/spell/en.utf-8.add
diff --git a/vim/spell/fr.utf-8.spl b/conf/spell/fr.utf-8.spl
index ff27132..ff27132 100644
--- a/vim/spell/fr.utf-8.spl
+++ b/conf/spell/fr.utf-8.spl
Binary files differ
diff --git a/vim/spell/fr.utf-8.sug b/conf/spell/fr.utf-8.sug
index df555d2..df555d2 100644
--- a/vim/spell/fr.utf-8.sug
+++ b/conf/spell/fr.utf-8.sug
Binary files differ
diff --git a/install.sh b/install.sh
index c52c3b9..aebc1b2 100755
--- a/install.sh
+++ b/install.sh
@@ -4,5 +4,3 @@ cd "$DIR" || exit
ln -sf "$(pwd)/.vimrc" "$HOME/.vimrc"
rm -rf "$HOME/.vim"
-rm -rf "$HOME/.config/vim"
-ln -sf "$(pwd)/vim" "$HOME/.config/vim"
diff --git a/vim/spell/en.utf-8.add.spl b/vim/spell/en.utf-8.add.spl
deleted file mode 100644
index 29528b3..0000000
--- a/vim/spell/en.utf-8.add.spl
+++ /dev/null
Binary files differ
ArKa projects. All rights to me, and your next child right arm.