diff options
author | Squibid <me@zacharyscheiman.com> | 2023-11-24 21:38:31 -0500 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2023-11-24 21:38:31 -0500 |
commit | f35b13d669867209427449840ff0930a732591dc (patch) | |
tree | 3acb658ec5d01f456c49a097d56f736cbfbbfc7d /after/ftplugin | |
parent | ebf9d2d1c4682068f5116f7efc1568ce5adf4f1b (diff) | |
download | nvim-f35b13d669867209427449840ff0930a732591dc.tar.gz nvim-f35b13d669867209427449840ff0930a732591dc.tar.bz2 nvim-f35b13d669867209427449840ff0930a732591dc.zip |
more stuff too lazy to seperate
Diffstat (limited to '')
-rw-r--r-- | after/ftplugin/gitcommit.lua | 1 | ||||
-rw-r--r-- | after/ftplugin/java.lua | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/after/ftplugin/gitcommit.lua b/after/ftplugin/gitcommit.lua index 8207d63..dece15e 100644 --- a/after/ftplugin/gitcommit.lua +++ b/after/ftplugin/gitcommit.lua @@ -1,2 +1 @@ -vim.cmd('set spell!') vim.cmd('startinsert | 1') diff --git a/after/ftplugin/java.lua b/after/ftplugin/java.lua index 53eb334..2c3db93 100644 --- a/after/ftplugin/java.lua +++ b/after/ftplugin/java.lua @@ -1,4 +1,4 @@ --- IMPORTANT: Make sure you're $JAVA_HOME is correct (prob should be 17 or higher) +-- NOTE: Make sure you're $JAVA_HOME is correct (prob should be 17 or higher) local java_cmds = vim.api.nvim_create_augroup('java_cmds', {clear = true}) local cache_vars = {} @@ -16,7 +16,7 @@ local features = { -- change this to `true` if you have `nvim-dap`, -- `java-test` and `java-debug-adapter` installed - debugger = false, + debugger = true, } local function get_jdtls_paths() |