From 6096fe565028168140963cc6b6c5ec05ed9b9899 Mon Sep 17 00:00:00 2001 From: christianchiarulli Date: Sun, 4 Apr 2021 17:21:57 -0400 Subject: [PATCH] udpates --- README.md | 10 ++++------ lua/settings.lua | 3 +++ nv-settings.lua | 1 - 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8378cdf2..0dbdfad2 100644 --- a/README.md +++ b/README.md @@ -186,25 +186,23 @@ Move user config into `config.lua` ts-comment string for react From here I will update for bug fixes and implement low priority features when I have time +highlight EndOfBuffer ctermfg=black ctermbg=black set to background color for lunar + **LOW PRIORITY** - vim vsnips dir should be co-located with config -- list all binaries needed for formatters and linters -- add badges to readme +- list all binaries needed for formatters and linters (one day add in wiki) - Implement what I can from this java config: [link](https://github.com/mfussenegger/nvim-jdtls/wiki/Sample-Configurations) - better ui for code actions - formatting - setup junit tests for java - look into emmet-ls -- toggle virtual text diagnostics -- configure neogit - vim ult test +- which-key all in lua - what is `fzy` - https://github.com/pwntester/octo.nvim - configure surround -- maybe incorporate ultisnips -- switch back to `nvim-autopairs` when/if it doesn't break snippets - Implement this for typescript https://github.com/jose-elias-alvarez/nvim-lsp-ts-utils - look into tabnine diff --git a/lua/settings.lua b/lua/settings.lua index a5fd32a8..965a3ff5 100644 --- a/lua/settings.lua +++ b/lua/settings.lua @@ -2,6 +2,9 @@ vim.cmd('set iskeyword+=-') -- treat dash separated words as a word text object" vim.cmd('set shortmess+=c') -- Don't pass messages to |ins-completion-menu|. vim.cmd('set inccommand=split') -- Make substitution work in realtime vim.o.hidden = O.hidden_files -- Required to keep multiple buffers open multiple buffers +vim.o.title = true +-- vim.o.titlestring = "filename nvim" +vim.o.titlestring="%<%F%=%l/%L - nvim" vim.wo.wrap = O.wrap_lines -- Display long lines as just one line vim.cmd('set whichwrap+=<,>,[,],h,l') -- move to next line with theses keys vim.cmd('syntax on') -- move to next line with theses keys diff --git a/nv-settings.lua b/nv-settings.lua index b6871065..0125ad8c 100644 --- a/nv-settings.lua +++ b/nv-settings.lua @@ -13,7 +13,6 @@ O.colorscheme = 'lunar' O.auto_close_tree = 0 O.wrap_lines = false --- @usage pass a table with your desired languages O.treesitter.ensure_installed = "all" O.treesitter.ignore_install = {"haskell"} O.treesitter.highlight.enabled = true