mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-07-06 20:14:28 +02:00
Meine Anpassungen an kickstart.nvim
This commit is contained in:
parent
e947649cb0
commit
7027051b4a
3 changed files with 58 additions and 2 deletions
18
lua/custom/plugins/vimconfig.lua
Normal file
18
lua/custom/plugins/vimconfig.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
-- disable netrw
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
-- Disable line wrap
|
||||
vim.opt.wrap = false
|
||||
|
||||
-- No swap file
|
||||
vim.opt.swapfile = false
|
||||
|
||||
-- Set shiftwidth and tabstop
|
||||
vim.opt.shiftwidth = 4
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.softtabstop = 4
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
return {}
|
Loading…
Add table
Add a link
Reference in a new issue