This commit is contained in:
jannawro 2023-10-09 19:52:40 +02:00
parent 70f6a3569a
commit 856a5e866b
3 changed files with 17 additions and 20 deletions

View file

@ -43,12 +43,6 @@ P.S. You can delete this when you're done too. It's your config now :)
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- set tabs
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.bo.softtabstop = 4
-- Install package manager
-- https://github.com/folke/lazy.nvim
-- `:help lazy.nvim.txt` for more info
@ -179,15 +173,6 @@ require('lazy').setup({
},
},
{
-- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',
-- Enable `lukas-reineke/indent-blankline.nvim`
-- See `:help indent_blankline.txt`
main = 'ibl',
opts = {},
},
-- "gc" to comment visual regions/lines
{ 'numToStr/Comment.nvim', opts = {} },
@ -277,6 +262,15 @@ vim.o.completeopt = 'menuone,noselect'
-- NOTE: You should make sure your terminal supports this
vim.o.termguicolors = true
-- Set tabs
vim.opt.tabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
vim.bo.softtabstop = 4
-- Override filetypes
vim.cmd('autocmd BufNewFile,BufRead Jenkinsfile set filetype=groovy')
-- [[ Basic Keymaps ]]
-- Keymaps for better default experience