This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local status_ok, jdtls = pcall(require, "jdtls") | |
if not status_ok then | |
return | |
end | |
-- Determine OS | |
local home = vim.env.HOME | |
local launcher_path = | |
vim.fn.glob(home .. "/.local/share/nvim/mason/packages/jdtls/plugins/org.eclipse.equinox.launcher_*.jar") | |
if #launcher_path == 0 then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% load static %} | |
{% load evaluation_extras %} | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<script type='text/javascript' src="{% static 'js/jquery.min.js' %}"></script> | |
<script type='text/javascript' src="{% static 'js/main.js' %}"></script> | |
<link rel='stylesheet' id='bootstrap-css-css' href="{% static 'css/bootstrap.css' %}" type='text/css' media='all' /> |