added java tls

This commit is contained in:
2025-09-12 15:02:47 +02:00
parent f2309053c7
commit d9807a35b5
5 changed files with 47 additions and 17 deletions

View File

@@ -91,7 +91,12 @@ vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
-- Set to true if you have a Nerd Font installed and selected in the terminal
vim.g.have_nerd_font = false
vim.g.have_nerd_font = true
vim.o.tabstop = 4 -- A TAB character looks like 4 spaces
vim.o.expandtab = true -- Pressing the TAB key will insert spaces instead of a TAB character
vim.o.softtabstop = 4 -- Number of spaces inserted instead of a TAB character
vim.o.shiftwidth = 4 -- Number of spaces inserted when indenting
-- [[ Setting options ]]
require 'options'