Compare commits

..

No commits in common. "4f209799ff36a20b6f8249e4a3ec675e5f0d7ba1" and "b8a0cd9113b82a6dc993a92ef32f12249c8e92cd" have entirely different histories.

3 changed files with 3 additions and 24 deletions

View File

@ -164,8 +164,6 @@ EOF";
#nvim-dap-ui #nvim-dap-ui
hoon-vim hoon-vim
nvim-treesitter nvim-treesitter
lualine-nvim
lualine-lsp-progress
lean-nvim lean-nvim
roslyn-nvim roslyn-nvim
nvim-treesitter-context nvim-treesitter-context
@ -173,7 +171,7 @@ EOF";
nvim-treesitter-parsers.ini nvim-treesitter-parsers.ini
nvim-treesitter-parsers.rust nvim-treesitter-parsers.rust
nvim-treesitter-parsers.c nvim-treesitter-parsers.c
#nvim-treesitter-parsers.c_sharp # currently broken for some reason nvim-treesitter-parsers.c_sharp
nvim-treesitter-parsers.cpp nvim-treesitter-parsers.cpp
nvim-treesitter-parsers.clojure nvim-treesitter-parsers.clojure
nvim-treesitter-parsers.latex nvim-treesitter-parsers.latex
@ -196,6 +194,7 @@ EOF";
nvim-treesitter-parsers.promql nvim-treesitter-parsers.promql
nvim-treesitter-parsers.nix nvim-treesitter-parsers.nix
nvim-treesitter-parsers.hoon nvim-treesitter-parsers.hoon
nvim-treesitter-parsers.c_sharp
omnisharp-extended-lsp-nvim omnisharp-extended-lsp-nvim
#neotest-dotnet #neotest-dotnet
nix-develop-nvim nix-develop-nvim
@ -277,7 +276,7 @@ EOF";
enable = true; # default shell on catalina enable = true; # default shell on catalina
# This is a total hack but we don't want the default clobbering it which it does if it's an empty string or null # This is a total hack but we don't want the default clobbering it which it does if it's an empty string or null
promptInit = "#noop"; promptInit = "#noop";
interactiveShellInit = (builtins.readFile ./zshrc); interactiveShellInit = (builtins.readFile ./.zshrc);
}; };
tmux = { tmux = {
@ -347,7 +346,6 @@ EOF";
victoriametrics victoriametrics
# TODO add sonic-pi here if it supports the arch # TODO add sonic-pi here if it supports the arch
unstablePkgs.dbeaver-bin unstablePkgs.dbeaver-bin
jujutsu
]) ])
#++ (with pkgs.ocamlPackages; [ #++ (with pkgs.ocamlPackages; [
# dune_3 # dune_3

View File

@ -16,7 +16,6 @@ vim.opt.mouse = ""
vim.opt.tabstop = 4 vim.opt.tabstop = 4
vim.opt.shiftwidth = 4 vim.opt.shiftwidth = 4
--vim.opt.smarttab = false --vim.opt.smarttab = false
vim.opt.fileformats = "unix,dos"
vim.g.BASH_AuthorName = 'Jeremy Wall' vim.g.BASH_AuthorName = 'Jeremy Wall'
vim.g.BASH_AuthorRef = 'jw' vim.g.BASH_AuthorRef = 'jw'
@ -578,24 +577,6 @@ vim.keymap.set("n", "<Leader>tdb", function()
vim.cmd("DBUIToggle") vim.cmd("DBUIToggle")
end) end)
require('lualine').setup {
icons_enabled = false,
disabled_filetypes = {
statusline = {},
winbar = {},
},
sections = {
-- left side
lualine_a = {'mode'},
lualine_b = {'filename'},
lualine_c = {'encoding', 'fileformat', 'filetype'},
-- right side
lualine_x = {'diagnostics'},
lualine_y = {'progress', 'lsp_progress'},
lualine_z = {'location'}
}
}
local dap = require('dap') local dap = require('dap')
dap.adapters.lldb = { dap.adapters.lldb = {
type = "executable", type = "executable",