Compare commits
6 Commits
b8a0cd9113
...
4f209799ff
Author | SHA1 | Date | |
---|---|---|---|
4f209799ff | |||
e4e49784df | |||
8e0d021f93 | |||
b762d874b9 | |||
13aa0368c3 | |||
8db42eed05 |
@ -164,6 +164,8 @@ EOF";
|
||||
#nvim-dap-ui
|
||||
hoon-vim
|
||||
nvim-treesitter
|
||||
lualine-nvim
|
||||
lualine-lsp-progress
|
||||
lean-nvim
|
||||
roslyn-nvim
|
||||
nvim-treesitter-context
|
||||
@ -171,7 +173,7 @@ EOF";
|
||||
nvim-treesitter-parsers.ini
|
||||
nvim-treesitter-parsers.rust
|
||||
nvim-treesitter-parsers.c
|
||||
nvim-treesitter-parsers.c_sharp
|
||||
#nvim-treesitter-parsers.c_sharp # currently broken for some reason
|
||||
nvim-treesitter-parsers.cpp
|
||||
nvim-treesitter-parsers.clojure
|
||||
nvim-treesitter-parsers.latex
|
||||
@ -194,7 +196,6 @@ EOF";
|
||||
nvim-treesitter-parsers.promql
|
||||
nvim-treesitter-parsers.nix
|
||||
nvim-treesitter-parsers.hoon
|
||||
nvim-treesitter-parsers.c_sharp
|
||||
omnisharp-extended-lsp-nvim
|
||||
#neotest-dotnet
|
||||
nix-develop-nvim
|
||||
@ -276,7 +277,7 @@ EOF";
|
||||
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
|
||||
promptInit = "#noop";
|
||||
interactiveShellInit = (builtins.readFile ./.zshrc);
|
||||
interactiveShellInit = (builtins.readFile ./zshrc);
|
||||
};
|
||||
|
||||
tmux = {
|
||||
@ -346,6 +347,7 @@ EOF";
|
||||
victoriametrics
|
||||
# TODO add sonic-pi here if it supports the arch
|
||||
unstablePkgs.dbeaver-bin
|
||||
jujutsu
|
||||
])
|
||||
#++ (with pkgs.ocamlPackages; [
|
||||
# dune_3
|
||||
|
@ -16,6 +16,7 @@ vim.opt.mouse = ""
|
||||
vim.opt.tabstop = 4
|
||||
vim.opt.shiftwidth = 4
|
||||
--vim.opt.smarttab = false
|
||||
vim.opt.fileformats = "unix,dos"
|
||||
|
||||
vim.g.BASH_AuthorName = 'Jeremy Wall'
|
||||
vim.g.BASH_AuthorRef = 'jw'
|
||||
@ -577,6 +578,24 @@ vim.keymap.set("n", "<Leader>tdb", function()
|
||||
vim.cmd("DBUIToggle")
|
||||
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')
|
||||
dap.adapters.lldb = {
|
||||
type = "executable",
|
||||
|
Loading…
x
Reference in New Issue
Block a user