summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorBotond Hende <nettingman@gmail.com>2024-06-13 23:09:19 +0200
committerBotond Hende <nettingman@gmail.com>2024-06-13 23:09:19 +0200
commit2b7bd7d76ad0868e4ffee32df960a52917190373 (patch)
tree04708f06f11a7e146768eea49293e692e318ecf3 /home
parent8fcb2c0854ce64e56a13a4beebba6f8b68b89550 (diff)
deleted init.vim and removed version check in init.lua
Diffstat (limited to 'home')
-rw-r--r--home/.config/nvim/init.lua4
-rw-r--r--home/.config/nvim/init.vim13
2 files changed, 1 insertions, 16 deletions
diff --git a/home/.config/nvim/init.lua b/home/.config/nvim/init.lua
index 1bd6317..5873992 100644
--- a/home/.config/nvim/init.lua
+++ b/home/.config/nvim/init.lua
@@ -12,6 +12,4 @@ vim.opt.number = true
local r = vim.version.range('0.0.0 - 0.10.0')
-if not r:has(vim.version()) then
- vim.cmd("colorscheme vim")
-end
+vim.cmd("colorscheme vim")
diff --git a/home/.config/nvim/init.vim b/home/.config/nvim/init.vim
deleted file mode 100644
index 9b276fb..0000000
--- a/home/.config/nvim/init.vim
+++ /dev/null
@@ -1,13 +0,0 @@
-set tabstop=4 " Number of spaces that a <Tab> in the file counts for.
-set shiftwidth=0 " Number of spaces to use for each step of (auto)indent.
-set noexpandtab " Do not use the appropriate number of spaces to insert a <Tab>.
-set showmatch " When a bracket is inserted, briefly jump to the matching
-set ignorecase " Ignore case in search patterns.
-set smartcase " Override 'ignorecase' if the pattern contains upper case
-
-set background=dark
-set mouse= " Disable mouse "
-
-set number
-hi LineNr ctermfg=gray
-colorscheme vim